import Exception from './Exception';
export default class UnsupportReturnValueHandlerError extends Exception {
    readonly returnValue: any;
    constructor(message: string, returnValue: any);
}
