import { ContentType } from '../utils/atlassian.util.js';
import { CodeSearchResult } from '../services/vendor.atlassian.search.service.js';
/**
 * Format code search results into markdown
 *
 * @param response The code search response from the API
 * @returns Markdown formatted string of code search results
 */
export declare function formatCodeSearchResults(searchResponse: {
    values?: CodeSearchResult[];
    size: number;
}): string;
/**
 * Format content search results into markdown
 *
 * @param response The content search response from the API
 * @param contentType Optional content type filter that was applied
 * @returns Markdown formatted string of content search results
 */
export declare function formatContentSearchResults(response: {
    values?: unknown[];
    size: number;
}, contentType?: ContentType): string;
