import { SubscriptionType } from './subscription-type'; export declare class DKSubscription { private readonly name; private readonly description; private readonly type; private readonly durationInMonths; static readonly MONTHLY_PREMIUM_HITTER: DKSubscription; static readonly ANNUAL_PREMIUM_HITTER: DKSubscription; static readonly MONTHLY_PREMIUM_PITCHER: DKSubscription; static readonly ANNUAL_PREMIUM_PITCHER: DKSubscription; static readonly LICENSE_MONTHLY_PREMIUM_HITTER: DKSubscription; static readonly DK_PLUS_MONTHLY: DKSubscription; static readonly DK_PLUS_YEARLY: DKSubscription; constructor(name: string, description: string, type: SubscriptionType, durationInMonths: number); getName(): string; getDescription(): string; getType(): SubscriptionType; getDurationInMonths(): number; static asArray(): DKSubscription[]; static byName(name: string): DKSubscription | undefined; }