import React from 'react'; import type { TabsTransferProps } from '../../types'; export interface TabsTransferPickerProps extends Omit { size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'full'; onFocus?: () => void; onBlur?: () => void; } export declare class TabsTransferPicker extends React.Component { optionModified: boolean; handleConfirm(value: any): void; onFoucs(): void; onBlur(): void; render(): JSX.Element; } declare const _default: typeof TabsTransferPicker; export default _default;