@brizy/ui
Version:
React elements in Brizy style
14 lines (13 loc) • 392 B
TypeScript
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>;