import { StateCommand } from "@codemirror/next/state"; import { KeyBinding } from "@codemirror/next/view"; export interface CommentTokens { block?: { open: string; close: string; }; line?: string; } export declare const toggleComment: StateCommand; export declare const toggleLineComment: StateCommand; export declare const lineComment: StateCommand; export declare const lineUncomment: StateCommand; export declare const toggleBlockComment: StateCommand; export declare const blockComment: StateCommand; export declare const blockUncomment: StateCommand; export declare const commentKeymap: readonly KeyBinding[]; //# sourceMappingURL=comment.d.ts.map