@techabl/core-components
Version:
Easy use restyle components in React applications.
10 lines • 433 B
TypeScript
interface MultiSelectWithFieldProps {
displayField: string;
options: Array<any>;
selectedItems?: Array<any>;
hasError?: boolean;
onSelect: (item: any) => any;
}
export declare const MultiSelectWithField: ({ displayField, options, selectedItems, hasError, onSelect, }: MultiSelectWithFieldProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=multi-select-with-field.component.d.ts.map