UNPKG

@hypernetlabs/web-ui

Version:
16 lines 680 B
import React from "react"; import { AutocompleteProps } from "@material-ui/lab"; export interface IGovernanceAutocompleteOption { label: string; value: any; } declare type AutocompletePropsExtacted = Omit<AutocompleteProps<any, boolean | undefined, boolean | undefined, boolean | undefined>, "renderInput">; interface IGovernanceAutocompleteProps extends AutocompletePropsExtacted { title?: string; options: IGovernanceAutocompleteOption[]; handleChange: (selectedValues: any) => void; multiple?: boolean; } export declare const GovernanceAutocomplete: React.FC<IGovernanceAutocompleteProps>; export {}; //# sourceMappingURL=GovernanceAutocomplete.d.ts.map