siegel
Version:
Web application development ecosystem
12 lines (11 loc) • 467 B
TypeScript
import type { Component, Props, Store } from './types';
declare const componentID = "-ui-select";
declare const getDefaultState: () => Store[0];
declare const Select: import("../_internals/types").CoreUIComponent<Props, NonNullableProps<{
theme: Props["theme"];
closeOnSelect: Props["closeOnSelect"];
listDisabledOptions: Props["listDisabledOptions"];
}>>;
export default Select;
export { componentID, getDefaultState };
export type { Props, Component };