import { FC } from 'react'; import { Value, Option } from '~/components/Overlay'; import { Color, StitchedCSS } from '~/theme'; import { PositionProps } from '~/types'; export declare type SelectProps = { value?: Value; options: (Option | Value)[]; onChange: (value: Value) => void; filterable?: boolean | 'create'; placeholder?: string; overlay?: PositionProps; label?: string; color?: Color; css?: StitchedCSS; }; export declare const Select: FC; //# sourceMappingURL=Select.d.ts.map