import { HTTPError } from "./http"; import { UsageLimitError, FeatureDisabledError } from "./licensing"; declare const pkg: { codes: { USAGE_LIMIT_EXCEEDED: string; FEATURE_DISABLED: string; }; types: string[]; errors: { UsageLimitError: typeof UsageLimitError; FeatureDisabledError: typeof FeatureDisabledError; HTTPError: typeof HTTPError; }; getPublicError: (err: any) => { code: any; type: any; } | { limitName: any; code: any; type: any; } | { featureName: any; code: any; type: any; } | undefined; }; export = pkg;