export declare class Exception {
    message: string;
    stack?: string;
    constructor(message: string, withStack?: boolean);
}
