import { z } from 'zod'; export declare const issueSeveritySchema: z.ZodEnum<{ error: "error"; info: "info"; warning: "warning"; }>; export type IssueSeverity = z.infer; export declare const issueSchema: z.ZodObject<{ message: z.ZodString; severity: z.ZodEnum<{ error: "error"; info: "info"; warning: "warning"; }>; source: z.ZodOptional; endLine: z.ZodOptional; endColumn: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>, z.ZodObject<{ url: z.ZodURL; snippet: z.ZodOptional; selector: z.ZodOptional; }, z.core.$strip>]>>; }, z.core.$strip>; export type Issue = z.infer; export declare const fileIssueSchema: z.ZodObject<{ message: z.ZodString; severity: z.ZodEnum<{ error: "error"; info: "info"; warning: "warning"; }>; source: z.ZodObject<{ file: z.ZodString; position: z.ZodOptional; endLine: z.ZodOptional; endColumn: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$strip>; export type FileIssue = z.infer; export declare const urlIssueSchema: z.ZodObject<{ message: z.ZodString; severity: z.ZodEnum<{ error: "error"; info: "info"; warning: "warning"; }>; source: z.ZodObject<{ url: z.ZodURL; snippet: z.ZodOptional; selector: z.ZodOptional; }, z.core.$strip>; }, z.core.$strip>; export type UrlIssue = z.infer;