import { AccountInfo } from "@azure/msal-browser"; import { AccountIdentifiers } from "../types/AccountIdentifiers.js"; /** * Helper function to determine whether 2 accountInfo objects represent the same account * @param accountA * @param accountB */ export declare function accountInfoIsEqual(accountA: AccountInfo | null, accountB: AccountInfo | null): boolean; /** * 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; //# sourceMappingURL=useAccount.d.ts.map