import { z } from "zod"; export declare const AccessDeclarationSchema: z.ZodObject<{ read_paths: z.ZodArray; write_paths: z.ZodArray; forbidden_patterns: z.ZodOptional>; }, "strict", z.ZodTypeAny, { read_paths: string[]; write_paths: string[]; forbidden_patterns?: string[] | undefined; }, { read_paths: string[]; write_paths: string[]; forbidden_patterns?: string[] | undefined; }>; export type AccessDeclaration = z.infer; //# sourceMappingURL=accessDeclaration.d.ts.map