import type { UsingClient } from '../../commands';
import type { APISubscription } from '../../types';
export declare const SUBSCRIPTION_CREATE: (_: UsingClient, data: APISubscription) => {
    id: string;
    userId: string;
    skuIds: string[];
    entitlementsIds: string[];
    renewalSkuIds: string[] | null;
    currentPeriodStart: string;
    currentPeriodEnd: string;
    status: import("../../types").SubscriptionStatus;
    canceledAt: string | null;
    country?: string | undefined;
};
export declare const SUBSCRIPTION_UPDATE: (_: UsingClient, data: APISubscription) => {
    id: string;
    userId: string;
    skuIds: string[];
    entitlementsIds: string[];
    renewalSkuIds: string[] | null;
    currentPeriodStart: string;
    currentPeriodEnd: string;
    status: import("../../types").SubscriptionStatus;
    canceledAt: string | null;
    country?: string | undefined;
};
export declare const SUBSCRIPTION_DELETE: (_: UsingClient, data: APISubscription) => {
    id: string;
    userId: string;
    skuIds: string[];
    entitlementsIds: string[];
    renewalSkuIds: string[] | null;
    currentPeriodStart: string;
    currentPeriodEnd: string;
    status: import("../../types").SubscriptionStatus;
    canceledAt: string | null;
    country?: string | undefined;
};
