import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { PhoneNumberTransferCustomSipHeadersItem } from "./PhoneNumberTransferCustomSipHeadersItem"; import { PhoneNumberTransferPostDialDigits } from "./PhoneNumberTransferPostDialDigits"; import { PhoneNumberTransferTransferDestination } from "./PhoneNumberTransferTransferDestination"; import { TransferTypeEnum } from "./TransferTypeEnum"; export declare const PhoneNumberTransfer: core.serialization.ObjectSchema; export declare namespace PhoneNumberTransfer { interface Raw { custom_sip_headers?: PhoneNumberTransferCustomSipHeadersItem.Raw[] | null; transfer_destination?: PhoneNumberTransferTransferDestination.Raw | null; phone_number?: string | null; condition: string; transfer_type?: TransferTypeEnum.Raw | null; post_dial_digits?: PhoneNumberTransferPostDialDigits.Raw | null; } }