type Location = { column: number; line: number; }; type NodeLocation = { end?: Location; start: Location; }; export interface Options { /** The number of lines to show above the error. default: 2 */ linesAbove?: number; /** The number of lines to show below the error. default: 3 */ linesBelow?: number; /** * Pass in a string to be displayed inline (if possible) next to the * highlighted location in the code. If it can't be positioned inline, * it will be placed above the code frame. * default: nothing */ message?: string; } export declare function codeFrameColumns(rawLines: string, loc: NodeLocation, opts?: Options): string; export {}; //# sourceMappingURL=codeFrameColumns.d.ts.map