import type RootStore from "../RootStore";
import { BaseShortcutProvider, type ShortcutConfig } from "../ShortcutProvider";
export declare class SearchShortcutProvider extends BaseShortcutProvider {
    private rootStore;
    readonly id = "search";
    constructor(rootStore: RootStore);
    createShortcuts(): ShortcutConfig[];
    get shortcuts(): ShortcutConfig[];
    shouldShowShortcuts(): boolean;
    handleShortcutClick(shortcutId: string): void;
    handleShortcutReset(): void;
}
//# sourceMappingURL=SearchShortcutProvider.d.ts.map