import type { ResponseData } from "../../interfaces";
export type CheckQuotaParams = {
    projects: number;
    apps: number;
    concurrentBuilds: number;
    containerSize: number;
};
export type DxSubsription = {
    id?: string;
    slug?: string;
    name?: string;
    paid?: number;
    currency?: string;
    key?: string;
    packageId?: string;
    packageType?: string;
    userId?: string;
    expiredAt?: string;
    createdAt?: string;
    updatedAt?: string;
};
export type CheckQuotaResponse = ResponseData & {
    data: {
        isExceed: boolean;
    };
};
export declare function dxCheckQuota(params: CheckQuotaParams, dxKey: string): Promise<CheckQuotaResponse>;
//# sourceMappingURL=dx-subscription.d.ts.map