import { Field, IDataHook } from "model-react"; import { PrioritizedMenu } from "../../menus/menu/PrioritizedMenu"; import { IQuery } from "../../menus/menu/_types/IQuery"; /** * The main menu of a session */ export declare class LMSessionMenu extends PrioritizedMenu { protected query: Field; /** * Sets the search query * @param query The current query */ setQuery(query: IQuery | null): void; /** * Retrieves the highlight data to use for highlighting within menu items * @param hook The hook to subscribe to changes * @returns The highlight data */ getQuery(hook?: IDataHook): IQuery | null; /** * Retrieves the highlight data to use for highlighting within menu items * @param hook The hook to subscribe to changes * @returns The highlight data */ getHighlight(hook?: IDataHook): IQuery | null; } //# sourceMappingURL=LMSessionMenu.d.ts.map