import { ConversationState } from "../flex-ui-core/src"; import { ITask } from "../models"; declare const getTransfersWithNotes: (interactionSid: string, channelSid: string, flexInstanceSid: string | null) => Promise; declare const getTransfersForConversationSid: (conversationSid: string, flexInstanceSid: string | null) => Promise; declare const getTransferWithNotesFromTask: (task: ITask>, transferSid: string) => ConversationState.TransferWithNotes; export { getTransfersForConversationSid, getTransfersWithNotes, getTransferWithNotesFromTask };