/// import { ButtonProps, ModalProps, TransferProps } from 'antd'; import { TransferItem } from '../AntdTransfer'; export interface ButtonTransferProps { idKey?: string; nameKey?: string; dataSource?: Array; value?: string[]; onChange?: (targetKeys: string[], options: any[]) => void; onOk?: (targetKeys: string[], options: any[]) => void; limitMaxCount?: number; antdButtonProps?: ButtonProps; antdModalProps?: ModalProps; antdTransferProps?: Omit, "dataSource">; type?: "primary" | "auto"; } export declare const ButtonTransferModal: (props: ButtonTransferProps) => JSX.Element;