import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type TranscriptItemSpeaker = {
    displayName: string;
    /**
     * **Coming soon!**
     *
     * @remarks
     */
    matchedCalendarInviteeEmail?: string | null | undefined;
};
/** @internal */
export declare const TranscriptItemSpeaker$inboundSchema: z.ZodType<TranscriptItemSpeaker, z.ZodTypeDef, unknown>;
export declare function transcriptItemSpeakerFromJSON(jsonString: string): SafeParseResult<TranscriptItemSpeaker, SDKValidationError>;
//# sourceMappingURL=transcriptitemspeaker.d.ts.map