//#region src/utils/code-frames.d.ts
interface Location {
  column: number;
  line: number;
}
interface NodeLocation {
  end?: Location;
  start?: Location;
}
declare function codeFrameColumns(rawLines: string, loc: NodeLocation, opts?: {
  linesAbove?: number;
  linesBelow?: number;
  highlight?: (rawLines: string) => string;
}): string;
//#endregion
export { codeFrameColumns as t };
//# sourceMappingURL=code-frames-Cz5INNSB.d.cts.map