import { z } from "zod"; export { FormattedItem, FormatMetadata } from "../utils/schema-utils"; export declare const UserProfileItemSchema: z.ZodObject<{ id: z.ZodString; first_name: z.ZodString; last_name: z.ZodString; full_name: z.ZodString; email: z.ZodString; email_confirmed: z.ZodBoolean; timezone: z.ZodString; }, z.core.$strip>; export type UserProfileItem = z.infer; //# sourceMappingURL=UserProfile.d.ts.map