import type { Task } from "./types.js"; export interface TaskSearchTextOptions { includeId?: boolean; includeBacklogItem?: boolean; includeTestStrategy?: boolean; includeAssumptions?: boolean; } export declare function taskSearchText(task: Task, { includeId, includeBacklogItem, includeTestStrategy, includeAssumptions, }?: TaskSearchTextOptions): string;