import * as oxfmt from 'oxfmt'; type OxcFormatOptions = oxfmt.FormatConfig; type PrettifyOptions = OxcFormatOptions & { enabled?: boolean; filePath?: string; }; declare const prettify: (str: string, options?: PrettifyOptions | null) => Promise; export { prettify };