import { SelectOptGroupProps, SelectOptionItem, SelectOptionsProps, SelectProps, SelectValue } from "./types.js"; import { Select } from "./select.js"; import { SelectOption } from "./option.js"; import { SelectOptGroup } from "./opt-group.js"; //#region src/select/index.d.ts type ISelect = typeof Select & { Option: typeof SelectOption; OptGroup: typeof SelectOptGroup; }; declare const DefaultSelect: ISelect; //#endregion export { DefaultSelect }; //# sourceMappingURL=index.d.ts.map