import React from 'react'; import { Transfer, TransferProps } from '../transfer2/Transfer'; export interface TransferDropDownProps extends TransferProps { multiple?: boolean; borderMode?: 'full' | 'half' | 'none'; container?: any; renderValue: (value: any) => JSX.Element | string; maxTagCount?: number; overflowTagPopover?: any; itemHeight?: number; quickStatic?: boolean; } export declare class TransferDropDown extends Transfer { static contextType?: React.Context | undefined; handleAfterPopoverHide(): void; render(): JSX.Element; } declare const _default: any; export default _default;