import { ResponseError } from 'vscode-languageserver';
import { INotifyErrorData } from '@sqltools/types';
export declare class NotifyResponseError<T = INotifyErrorData> extends ResponseError<T> {
    constructor(code: number, message: string, data: T);
}
export default NotifyResponseError;
