///
import { Identity } from "../types/metanet-identity-types";
interface UseIdentitySearchProps {
confederacyHost?: string;
onIdentitySelected?: (selectedIdentity: Identity) => void;
}
export declare const useIdentitySearch: ({ onIdentitySelected, }?: UseIdentitySearchProps) => {
inputValue: string;
setInputValue: (_: React.SyntheticEvent, newInputValue: string) => void;
selectedIdentity: Identity | null;
setSelectedIdentity: (_: React.SyntheticEvent, newValue: Identity | null) => void;
identities: Identity[];
isLoading: boolean;
setIsLoading: import("react").Dispatch>;
};
export {};
//# sourceMappingURL=useIdentitySearch.d.ts.map