import Exception from './Exception';
export default class ResponseStatusException extends Exception {
    readonly code: number;
    readonly reason: string;
    constructor(code: number, reason: string);
    getResponseHeaders(): Record<string, any>;
}
