import { Select as SelectParent } from './select'; import { SelectOptgroup } from './select-optgroup'; import { SelectOption } from './select-option'; type Select = typeof SelectParent & { /** * Select.Option component, used to display a native option within a select. * * @example * */ Option: typeof SelectOption; /** * Select.Optgroup component, used to display a native optgroup within a select. * * @example * */ Optgroup: typeof SelectOptgroup; }; /** * Select component, used to display a native select. * * @example * */ declare const SelectComponent: Select; export type { SelectProps } from './select'; export type { SelectOptgroupProps } from './select-optgroup'; export type { SelectOptionProps } from './select-option'; export { SelectComponent as Select, SelectOptgroup, SelectOption }; //# sourceMappingURL=index.d.ts.map