import * as z from "zod/v3"; /** * The request body for creating a company admin. */ export type AdminCreateRequest = { /** * The first name of the admin. */ firstName: string; /** * The last name of the admin. */ lastName: string; /** * The email of the admin for Gusto's system. If the email matches an existing user, this will create an admin account for them. */ email: string; }; /** @internal */ export type AdminCreateRequest$Outbound = { first_name: string; last_name: string; email: string; }; /** @internal */ export declare const AdminCreateRequest$outboundSchema: z.ZodType; export declare function adminCreateRequestToJSON(adminCreateRequest: AdminCreateRequest): string; //# sourceMappingURL=admincreaterequest.d.ts.map