import { ProviderType } from './providers'; export interface UndelegationType { amount: string; seconds: number; } export interface DelegationType { address: string; claimableRewards: string; contract: string; userActiveStake: string; userUnBondable: string; userUndelegatedList: UndelegationType[]; } export interface WithdrawalsArrayType { undelegation: UndelegationType; delegation: DelegationType; provider: ProviderType; } //# sourceMappingURL=userDelegation.d.ts.map