import * as z from "zod/v3"; /** * describes a user in the datasource */ export type DatasourceUserDefinition = { email: string; /** * To be supplied if the user id in the datasource is not the email */ userId?: string | undefined; name: string; /** * set to false if the user is a former employee or a bot */ isActive?: boolean | undefined; }; /** @internal */ export type DatasourceUserDefinition$Outbound = { email: string; userId?: string | undefined; name: string; isActive?: boolean | undefined; }; /** @internal */ export declare const DatasourceUserDefinition$outboundSchema: z.ZodType; export declare function datasourceUserDefinitionToJSON(datasourceUserDefinition: DatasourceUserDefinition): string; //# sourceMappingURL=datasourceuserdefinition.d.ts.map