import React from "react"; import ReactSelect from "react-select"; import { ThemeProps } from "../theme"; type ReactSelectProps = React.ComponentProps; export type ComboboxProps = Omit & { width?: string; } & ThemeProps; export declare const Combobox: React.FC; export {};