import { BaseComponentProps } from '../../typings'; import { default as React } from 'react'; import { SelectProps } from 'antd'; export interface OnChainSelectProps extends BaseComponentProps, SelectProps { pane?: { cols?: number; item?: BaseComponentProps; }; popupContainer?: HTMLElement; } export interface OnChainSelectForwardRefProps { } /** select组件 */ declare const OnChainSelect: React.FC; export default OnChainSelect;