import { HttpException } from '@nestjs/common';
import { type PlanLimitValue } from './plan-limits';
export declare class PlanLimitException extends HttpException {
    constructor(args: {
        featureKey: string;
        currentPlanCode: string | null | undefined;
        limit: PlanLimitValue;
        used?: number;
        period?: 'MONTH' | 'ALWAYS';
        message?: string;
    });
}
