import { HTTPError } from "./http"; export declare const type = "license_error"; export declare const codes: { USAGE_LIMIT_EXCEEDED: string; FEATURE_DISABLED: string; }; export declare const context: { [x: string]: ((err: any) => { limitName: any; }) | ((err: any) => { featureName: any; }); }; export declare class UsageLimitError extends HTTPError { limitName: string; constructor(message: string, limitName: string); } export declare class FeatureDisabledError extends HTTPError { featureName: string; constructor(message: string, featureName: string); }