/** * 自动穿梭框 * @description 选择后自动移入右侧 */ import React from "react"; import { TransferProps } from "antd"; import "./AntdTransfer.less"; export interface AntdAutoTransferProps { idKey?: string; nameKey?: string; dataSource: Array; value?: string[]; limitMaxCount?: number; onChange?: (targetKeys: string[], options: any[]) => void; antdProps?: Omit, "dataSource">; } export interface AntdAutoTransferItem { key?: string; title?: string; description?: string; disabled?: boolean; [name: string]: any; } export declare const AntdAutoTransfer: React.FC;