/// import { Account } from '../account/account'; import { MultisigKeysImport } from './multisig'; export type AccountImport = { version: number; name: string; spendingKey: string | null; viewKey: string; incomingViewKey: string; outgoingViewKey: string; publicAddress: string; createdAt: { hash: Buffer; sequence: number; networkId?: number; } | null; multisigKeys?: MultisigKeysImport; proofAuthorizingKey: string | null; ledger: boolean; }; export declare function toAccountImport(account: Account, viewOnly: boolean, networkId: number): AccountImport; export declare function validateAccountImport(toImport: AccountImport): void; //# sourceMappingURL=accountImport.d.ts.map