import { ResponseFormatter } from "../../../utils/responseFormatter.js";
import { ProjectListResponse } from "./types.js";
/**
 * Formatter for structured project query responses
 */
export declare class ProjectListFormatter implements ResponseFormatter<ProjectListResponse> {
    /**
     * Get an emoji indicator for the task status
     */
    private getStatusEmoji;
    /**
     * Get a visual indicator for the priority level
     */
    private getPriorityIndicator;
    format(data: ProjectListResponse): string;
}
/**
 * Create a human-readable formatted response for the atlas_project_list tool
 *
 * @param data The structured project query response data
 * @param isError Whether this response represents an error condition
 * @returns Formatted MCP tool response with appropriate structure
 */
export declare function formatProjectListResponse(data: any, isError?: boolean): any;
