linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
13 lines (12 loc) β’ 439 B
TypeScript
import Select from '../select';
import type { SelectProps } from '../index';
import React from 'react';
import GhostSelect from './GhostSelect';
export interface ISelectProps extends SelectProps {
type?: 'select' | 'checkbox' | 'cascader';
Option?: typeof Select.Option;
OptGroup?: typeof Select.OptGroup;
GhostSelect?: typeof GhostSelect;
}
declare const NormalSelect: React.FC<ISelectProps>;
export default NormalSelect;