import { z } from "zod"; export declare const selectedProfileDocumentSchema: z.ZodObject<{ profileId: z.ZodString; displayName: z.ZodOptional; bundleIds: z.ZodDefault>; generatedAt: z.ZodString; }, "strip", z.ZodTypeAny, { generatedAt: string; profileId: string; bundleIds: string[]; displayName?: string | undefined; }, { generatedAt: string; profileId: string; displayName?: string | undefined; bundleIds?: string[] | undefined; }>; export type SelectedProfileDocument = z.infer; export declare function parseSelectedProfileDocument(value: unknown): SelectedProfileDocument; //# sourceMappingURL=selected-profile.d.ts.map