UNPKG

@kwiz/fluentui

Version:
13 lines (12 loc) 428 B
import { ComboboxProps } from "@fluentui/react-components"; interface iProps extends Omit<ComboboxProps, "selectedOptions" | "onChange" | "onOptionSelect" | "children"> { items: { key: string; text: string; }[]; value: string; onChange: (value: string) => void; freeFormPrefix?: string; } export declare function ComboboxEX(props: iProps): import("react/jsx-runtime").JSX.Element; export {};