import { NativeSelectGroupProps, NativeSelectOptionProps, NativeSelectProps } from "./types.js"; import { NativeSelect } from "./native-select.js"; import { NativeOption } from "./native-option.js"; import { NativeOptGroup } from "./native-opt-group.js"; //#region src/native-select/index.d.ts type ISelect = typeof NativeSelect & { Option: typeof NativeOption; OptGroup: typeof NativeOptGroup; }; declare const DefaultSelect: ISelect; //#endregion export { DefaultSelect }; //# sourceMappingURL=index.d.ts.map