import { CommonProps, Props } from "react-select"; import { SelectComponents } from "react-select/dist/declarations/src/components"; export interface OptionType { [string: string]: any; } export type OptionsType = OptionType[]; export interface GroupType { [string: string]: any; options: OptionsType; } export type DropdownProps = { options: OptionsType; className?: string; isSearchable?: boolean; isClearable?: boolean; disabled?: boolean; label?: string; labelPosition?: "top" | "left" | "inner"; components?: SelectComponents; } & Partial> & Props; /** Displays a list of options for the user to pick from. * Built using react-select, styled for Stellar. Refer to the react-select docs for complete documentation of available properties aside from the ones * added by this wrapper component. * * [Figma Link](https://www.figma.com/file/a696svN2S7YNlZRYAkeLob/Stellar-Design-System?type=design&node-id=5379%3A7122&t=hcGqixx7MZ4qSgbd-1), * [react-select Docs](https://react-select.com/home) */ export declare const Dropdown: (props: DropdownProps) => import("react/jsx-runtime").JSX.Element;