UNPKG

@brizy/ui

Version:
14 lines (13 loc) 392 B
import { Actions, Choice } from "./types"; import { FCC } from "../types"; export interface Props { value: string; placeholder?: string; title?: string; error?: string; choices: Choice[]; onChange: (payload: Actions) => void; getPopoverContainer?: () => HTMLElement; getDropdownContainer?: () => HTMLElement; } export declare const SelectEditable: FCC<Props>;