import { Address } from "viem"; import { AvalancheAccount } from "../avalancheAccount"; /** * Parse an account or address to an AvalancheAccount * * @param account - The account or address to parse {@link AvalancheAccount} * @returns The parsed account {@link AvalancheAccount} or undefined if not provided * * @example * ```ts * import { parseAvalancheAccount } from "@avalanche-sdk/client/accounts"; * * const account = parseAvalancheAccount("0xab...."); * console.log(account); * * ``` */ export declare function parseAvalancheAccount(account: accountOrAddress): accountOrAddress extends Address ? AvalancheAccount : accountOrAddress; //# sourceMappingURL=parseAvalancheAccount.d.ts.map