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