import { WorkspaceDetailed, WorkspacePermissionsResponse, WorkspaceMembership } from '../services/vendor.atlassian.workspaces.types.js'; /** * Format a list of workspaces for display * @param workspacesData - Raw workspaces data from the API * @returns Formatted string with workspaces information in markdown format */ export declare function formatWorkspacesList(workspacesData: WorkspacePermissionsResponse): string; /** * Format detailed workspace information for display * @param workspace - Raw workspace data from the API * @param membership - Optional membership information for the workspace * @returns Formatted string with workspace details in markdown format */ export declare function formatWorkspaceDetails(workspace: WorkspaceDetailed, membership?: WorkspaceMembership): string;