import * as Prettier from "prettier/standalone"; /** * Format `source` LaTeX code using Prettier to format/render * the code. * * @export * @param [source=""] - code to be formatted * @param [options={}] - Prettier options object (you can set `printWidth` here) * @returns formatted code */ export declare function printPrettier(source?: string, options?: {}): Promise; export { Prettier };