import { z } from 'zod'; export declare const baseLibraryValidators: { readonly id: z.ZodDefault; readonly name: z.ZodString; readonly type: z.ZodString; }; export declare const baseLibrarySchema: z.ZodObject<{ id: z.ZodDefault; name: z.ZodString; type: z.ZodString; }, z.core.$strip>; export type BaseLibraryDefinition = z.infer; //# sourceMappingURL=base.d.ts.map