import { type CancellationToken } from 'vscode-languageserver-protocol'; /** * Throws a {@link ResponseError} with {@link LSPErrorCodes.RequestCancelled} if * the token is cancelled. */ export declare function throwIfCancelled(token: CancellationToken): void;