import type { Blueprint, Resource } from '@sanity/blueprints-parser';
import { type DeployedResource, type Stack } from '../types.js';
export declare function formatTitle(title: string, name: string): string;
export declare function formatDeployedResourceTree(resources: DeployedResource[] | undefined): string;
export declare function formatResourceTree(resources: Resource[] | undefined): string;
export declare function formatStackInfo(stack: Stack | Blueprint, isCurrentStack?: boolean): string;
export declare function formatStacksListing(stacks: Stack[], currentStackId?: string): string;
export declare function stackDeployDiff(localBlueprint: Blueprint, deployedStack: Stack): string | null;
