export declare class AccountStatus { private readonly name; private readonly trialing; private readonly paid; static readonly PRE_TRIAL: AccountStatus; static readonly PRE_TRIAL_WITH_CREDIT_CARD: AccountStatus; static readonly TRIALING: AccountStatus; static readonly TRIALING_WITH_CREDIT_CARD: AccountStatus; static readonly ABOUT_TO_END_TRIAL: AccountStatus; static readonly TRIAL_ENDED: AccountStatus; static readonly PAID: AccountStatus; static readonly EXPIRED: AccountStatus; static readonly CANCELLED: AccountStatus; static readonly PAST_DUE: AccountStatus; constructor(name: string, trialing: boolean, paid: boolean); getName(): string; isTrialing(): boolean; isPaid(): boolean; static asArray(): AccountStatus[]; }