export type GetTSErrorFilesProps = { command?: string; root?: string; }; export type TsErrorFile = { file: string; line: number; column: number; code: string; message: string; }; export declare function getTSErrorFiles(options?: GetTSErrorFilesProps): TsErrorFile[];