import { ControllerResponse } from '../types/common.types.js';
import { ContentType } from '../utils/atlassian.util.js';
/**
 * Handle search for content (PRs, Issues, Wiki, etc.)
 */
export declare function handleContentSearch(workspaceSlug: string, repoSlug?: string, query?: string, limit?: number, cursor?: string, contentType?: ContentType): Promise<ControllerResponse>;
