import { Address } from "../types/address.js"; import { Account } from "../types/account.js"; import { ErrorType } from "../errors/utils.js"; //#region src/utils/parseAccount.d.ts type ParseAccountErrorType = ErrorType; declare function parseAccount(account: accountOrAddress): accountOrAddress extends Address ? Account : accountOrAddress; //#endregion export { ParseAccountErrorType, parseAccount }; //# sourceMappingURL=parseAccount.d.ts.map