import * as z from "zod/v3"; /** * Describes the request body of the /betausers API call */ export type GreenlistUsersRequest = { /** * Datasource which needs to be made visible to users specified in the `emails` field. */ datasource: string; /** * The emails of the beta users */ emails: Array; }; /** @internal */ export type GreenlistUsersRequest$Outbound = { datasource: string; emails: Array; }; /** @internal */ export declare const GreenlistUsersRequest$outboundSchema: z.ZodType; export declare function greenlistUsersRequestToJSON(greenlistUsersRequest: GreenlistUsersRequest): string; //# sourceMappingURL=greenlistusersrequest.d.ts.map