import { Option, Value } from '~/components/Overlay'; import { PropsEventHandler, PositionProps } from '~/types'; import { StitchedCSS } from '~/theme'; export declare function useSelect(items?: (Option | Value)[], value?: Value, position?: PositionProps & { filterable?: boolean | 'create'; placeholder?: string; css?: StitchedCSS; }, handler?: (selection: Event | any) => () => void | undefined): [string | number | undefined, PropsEventHandler, (value: Value) => void]; export declare function useMultiSelect(items?: (Option | Value)[], initialValues?: Value[], position?: PositionProps & { filterable?: boolean | 'create'; placeholder?: string; css?: StitchedCSS; }, handler?: (selection: Event | any) => () => void | undefined): [ Value[] | null | undefined, PropsEventHandler, (value: Value[] | undefined) => void ]; //# sourceMappingURL=index.d.ts.map