import { BPComponentProps, UiConfigRendererContextType } from "./BPComponent"; import { BPInputComponent } from "./BPInputComponent"; import { BPValueComponentState } from "./BPValueComponent"; export interface DropdownItem { label: string; value: string | number; uuid?: string; } export type BPDropdownComponentState = BPValueComponentState & { options: DropdownItem[]; }; export declare class BPDropdownInputComponent extends BPInputComponent { constructor(props: BPComponentProps, context: UiConfigRendererContextType); getUpdatedState(state: BPDropdownComponentState): BPDropdownComponentState; renderInput(): import("react/jsx-runtime").JSX.Element; }