import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GmailData = { label?: string | null | undefined; }; /** @internal */ export declare const GmailData$inboundSchema: z.ZodType; /** @internal */ export type GmailData$Outbound = { label?: string | null | undefined; }; /** @internal */ export declare const GmailData$outboundSchema: z.ZodType; export declare function gmailDataToJSON(gmailData: GmailData): string; export declare function gmailDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gmaildata.d.ts.map