import { Plugin, PluginKey } from "prosemirror-state";
export declare const SlashCommandPluginKey: PluginKey<any>;
export interface SlashCommandState {
    active: boolean;
    range?: {
        from: number;
        to: number;
    };
    query?: string;
    dismissed?: boolean;
}
export declare function slashCommandPlugin(): Plugin<SlashCommandState>;
