import type { RShell } from '../../r-bridge/shell';
import type { FlowrSearchLike } from '../../search/flowr-search-builder';
export interface ShowSearchOptions {
    readonly showCode?: boolean;
    readonly collapseResult?: boolean;
}
/**
 * Visualizes a search and its results in markdown format.
 */
export declare function showSearch(shell: RShell, code: string, search: FlowrSearchLike, { collapseResult }?: ShowSearchOptions): Promise<string>;
