/** Convert a path to its output destination. */ export declare function getOutPath(inDir: string, fPath: string, outDir: string): string; interface FormatErrorOptions { /** File the error is in */ file: string; /** Line the error is on */ line: string; /** Column in line the error is on */ column: string; /** Tool used to create error. */ tool: string; /** Message for the error */ message: string; /** Source code where the error is */ code: string; } /** Format an error in a Typescript style so they match across tools */ export declare function formatError({ file, line, column, tool, message, code }: FormatErrorOptions): string; export {}; //# sourceMappingURL=utils.d.ts.map