IdentityVerificationClient: {
    getIdentityVerification: (
        options: { identityVerificationId: string; storeId?: string },
    ) => Promise<IdentityVerification>;
    sendIdentityVerification: (
        options: {
            identityVerificationId: string;
            storeId?: string;
            channelKey: string;
            customer: SendIdentityVerificationBodyCustomer;
            customData?: string;
            bypass?: object;
            operator: IdentityVerificationOperator;
            method: IdentityVerificationMethod;
        },
    ) => Promise<SendIdentityVerificationResponse>;
    confirmIdentityVerification: (
        options: {
            identityVerificationId: string;
            storeId?: string;
            otp?: string;
        },
    ) => Promise<ConfirmIdentityVerificationResponse>;
    resendIdentityVerification: (
        options: { identityVerificationId: string; storeId?: string },
    ) => Promise<ResendIdentityVerificationResponse>;
}

Type declaration