export declare class CatchHelper { static toLowerCase(value: any): string; static toUpperCase(value: any): string; static hasDangerData(path: string, body: Record): Record; static formatJSON(object: Record, tab?: string): string; static mapperParams(params: any): string; static allowInterceptRouteByRules(path: string, envRules: string): boolean; static isProduction(env: any): boolean; static isDevelopment(env: any): boolean; static getEnvironment(env?: any): string; }