UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

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