export interface ErrorLocation { filePath: string; line: number; column: number; } export declare const getErrorLocationFrom: (sourceFile: string) => ErrorLocation | undefined;