import React from 'react';
import { TdTransferProps } from './type';
import { TNode, StyledProps } from '../common';
export interface TransferProps extends TdTransferProps, StyledProps {
    content?: Array<TNode>;
}
declare const Transfer: React.FunctionComponent<TransferProps>;
export default Transfer;
