antd
Version:
An enterprise-class UI design language and React components implementation
10 lines (9 loc) • 333 B
TypeScript
import * as React from 'react';
import type { SelectProps } from '../select';
import Select from '../select';
type CompoundedComponent = React.FC<SelectProps> & {
Option: typeof Select.Option;
};
declare const MiniSelect: CompoundedComponent;
declare const MiddleSelect: CompoundedComponent;
export { MiniSelect, MiddleSelect };