@gzued/antd-compiled
Version:
Pre-bundled Ant Design 4.x and related dependencies for @gzued packages
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 };