import { Exception } from './index'; export declare class CodedException extends Exception { private code; constructor(code: number, message: string, innerError?: Error); get Code(): number; toJSON(): string; toString(): string; }