import { KeyWise, KeyWiseTransferItem, ListStyle, PaginationType, RenderResult, RenderResultObject, SelectAllLabel, TransferClassNamesType, TransferCustomListBodyProps, TransferDirection, TransferEmits, TransferItem, TransferKey, TransferListBodyProps, TransferListProps, TransferLocale, TransferRender, TransferSearchOption, TransferSlots, TransferStylesType } from "./interface.js"; import Transfer, { InternalTransferProps } from "./Transfer.js"; import Actions, { TransferOperationProps } from "./Actions.js"; import Search, { TransferSearchEmits, TransferSearchProps, TransferSearchSlots } from "./search.js"; import TransferSection from "./Section.js"; import { App } from "vue"; //#region src/transfer/index.d.ts type TransferProps = InternalTransferProps; declare const InternalTransfer: typeof Transfer & { install: (app: App) => void; List: typeof TransferSection; Search: typeof Search; Operation: typeof Actions; }; //#endregion export { type KeyWise, type KeyWiseTransferItem, type ListStyle, type PaginationType, type RenderResult, type RenderResultObject, type SelectAllLabel, type TransferClassNamesType, type TransferCustomListBodyProps, type TransferDirection, type TransferEmits, type TransferItem, type TransferKey, type TransferListBodyProps, type TransferListProps, type TransferLocale, type TransferOperationProps, TransferProps, type TransferRender, type TransferSearchEmits, type TransferSearchOption, type TransferSearchProps, type TransferSearchSlots, type TransferSlots, type TransferStylesType, InternalTransfer as default };