import type { Struct, Vec, u16 } from '@polkadot/types'; import type { AccountId, Balance, BlockNumber } from '@polkadot/types/interfaces/runtime'; /** @name ActiveRecovery */ export interface ActiveRecovery extends Struct { readonly created: BlockNumber; readonly deposit: Balance; readonly friends: Vec; } /** @name RecoveryConfig */ export interface RecoveryConfig extends Struct { readonly delayPeriod: BlockNumber; readonly deposit: Balance; readonly friends: Vec; readonly threshold: u16; } export declare type PHANTOM_RECOVERY = 'recovery';