interface FormatCodeError { $: "FormatCodeError"; message: string; } interface FormattedCode { $: "FormattedCode"; code: string; } export declare function formatCode(path: string, code: string): FormattedCode | FormatCodeError; export {};