UNPKG

@brizy/ui

Version:
18 lines (17 loc) 509 B
import { Actions, Choice } from "../SelectEditable/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; hasReset?: boolean; hasDelete?: boolean; hasEdit?: boolean; hasDuplicate?: boolean; } export declare const SelectEditable2: FCC<Props>;