import { SpaceDetailed, SpacesResponse } from '../services/vendor.atlassian.spaces.types.js';
/**
 * Format a list of spaces for display
 * @param spacesData - Raw spaces data from the API
 * @returns Formatted string with spaces information in markdown format
 */
export declare function formatSpacesList(spacesData: SpacesResponse): string;
/**
 * Format detailed space information for display
 * @param spaceData - Raw space details from the API
 * @param homepageContent - Optional homepage content to include
 * @returns Formatted string with space details in markdown format
 */
export declare function formatSpaceDetails(spaceData: SpaceDetailed, homepageContent?: string): string;
