import { z } from "zod"; /** * Zod schema for PR identifier string * Supports multiple formats */ export declare const PRIdentifierStringSchema: z.ZodString; /** * Common pagination schema */ export declare const PaginationSchema: z.ZodObject<{ page: z.ZodDefault; page_size: z.ZodNumber; }, z.core.$strip>; //# sourceMappingURL=validation.d.ts.map