import prettier from "prettier"; type FormatOptions = { prettier?: prettier.Options; /** * Determines if a newline is included at the end of the formatted result. * * @defaultValue `true` */ includeNewlineAtEnd?: boolean; }; export declare const format: (source: string, filePath: string, options?: FormatOptions) => Promise; export {};