import { Procedure } from '../../internal'; import { Account, AddSecondaryAccountsParams, Identity } from '../../types'; import { ExtrinsicParams, ProcedureAuthorization, TransactionSpec } from '../../types/internal'; /** * @hidden */ export interface Storage { identity: Identity; actingAccount: Account; } /** * @hidden */ export declare function prepareAddSecondaryKeysWithAuth(this: Procedure, args: AddSecondaryAccountsParams): Promise>>; /** * @hidden */ export declare function getAuthorization(this: Procedure): Promise; /** * @hidden */ export declare function prepareStorage(this: Procedure): Promise; /** * @hidden */ export declare const addSecondaryAccounts: () => Procedure; //# sourceMappingURL=addSecondaryAccountsWithAuth.d.ts.map