export declare const RUNTIME_ERROR_PREFIX = "RUNTIME_ERR"; export interface ErrorDescriptor { number: number; message: string; title: string; description: string; } export declare function getRuntimeErrorCode(error: ErrorDescriptor): string; export declare const RUNTIME_ERROR_RANGES: { TEAL: { min: number; max: number; title: string; }; GENERAL: { min: number; max: number; title: string; }; TRANSACTION: { min: number; max: number; title: string; }; ASA: { min: number; max: number; title: string; }; }; export declare const RUNTIME_ERRORS: { [category in keyof typeof RUNTIME_ERROR_RANGES]: { [errorName: string]: ErrorDescriptor; }; };