import { AccountInfo } from "@azure/msal-browser";
import { AccountIdentifiers } from "../types/AccountIdentifiers";
/**
 * Given 1 or more accountIdentifiers, returns the Account object if the user is signed-in
 * @param accountIdentifiers
 */
export declare function useAccount(accountIdentifiers?: AccountIdentifiers): AccountInfo | null;
