import { FC } from 'react'; import type { TransferProps as AntdTransferProps } from 'tntd/lib/transfer'; export interface TransferProps extends Omit { leftTitle?: string; rightTitle?: string; rowKey?: string; value?: string[]; } export declare const Transfer: FC; export default Transfer;