import { ControllerResponse } from '../types/common.types.js';
import { GetRepositoryToolArgsType } from '../tools/atlassian.repositories.types.js';
/**
 * Get details of a specific repository
 *
 * @param params - Parameters containing workspaceSlug and repoSlug
 * @returns Promise with formatted repository details content
 */
export declare function handleRepositoryDetails(params: GetRepositoryToolArgsType): Promise<ControllerResponse>;
