type Errors = { location?: { line: number; column: number; }; text: string; }[]; export declare function prettyPrintEsBuildErrors(errors: Errors, opts: { content: string; path: string; }): void; export {};