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