export declare const TransferTypeEnum: {
    readonly Blind: "blind";
    readonly Conference: "conference";
    readonly SipRefer: "sip_refer";
};
export type TransferTypeEnum = (typeof TransferTypeEnum)[keyof typeof TransferTypeEnum];
