import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TextRange, TextRange$Outbound } from "./textrange.js"; export type CodeLine = { lineNumber?: number | undefined; content?: string | undefined; /** * Index ranges depicting matched sections of the line */ ranges?: Array | undefined; }; /** @internal */ export declare const CodeLine$inboundSchema: z.ZodType; /** @internal */ export type CodeLine$Outbound = { lineNumber?: number | undefined; content?: string | undefined; ranges?: Array | undefined; }; /** @internal */ export declare const CodeLine$outboundSchema: z.ZodType; export declare function codeLineToJSON(codeLine: CodeLine): string; export declare function codeLineFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=codeline.d.ts.map