import { InternalServerErrorException } from '@nestjs/common';
interface ServerExceptionOptions {
    information: {
        message: string;
        identifier: string;
    };
}
export declare class ServerException extends InternalServerErrorException {
    constructor(options: ServerExceptionOptions);
}
export declare class UnHandledServerException extends ServerException {
    constructor();
}
export {};
