import type { Certificate, CloudFirewall, CloudServer, CloudSshKey, Datacenter, FloatingIp, Image, ISO, LoadBalancer, LoadBalancerType, Location, Network, PlacementGroup, PrimaryIp, ServerType, Volume } from "./types.js"; export declare function formatContextList(contexts: { name: string; active: boolean; }[]): string; export declare function formatDatacenterList(datacenters: Datacenter[]): string; export declare function formatDatacenterDetails(dc: Datacenter): string; export declare function formatLocationList(locations: Location[]): string; export declare function formatLocationDetails(loc: Location): string; export declare function formatServerTypeList(types: ServerType[]): string; export declare function formatServerTypeDetails(st: ServerType): string; export declare function formatLoadBalancerTypeList(types: LoadBalancerType[]): string; export declare function formatLoadBalancerTypeDetails(lbt: LoadBalancerType): string; export declare function formatIsoList(isos: ISO[]): string; export declare function formatIsoDetails(iso: ISO): string; export declare function formatCloudServerList(servers: CloudServer[]): string; export declare function formatCloudServerDetails(srv: CloudServer): string; export declare function formatNetworkList(networks: Network[]): string; export declare function formatNetworkDetails(net: Network): string; export declare function formatCloudFirewallList(firewalls: CloudFirewall[]): string; export declare function formatCloudFirewallDetails(fw: CloudFirewall): string; export declare function formatFloatingIpList(ips: FloatingIp[]): string; export declare function formatFloatingIpDetails(ip: FloatingIp): string; export declare function formatPrimaryIpList(ips: PrimaryIp[]): string; export declare function formatPrimaryIpDetails(ip: PrimaryIp): string; export declare function formatVolumeList(volumes: Volume[]): string; export declare function formatVolumeDetails(vol: Volume): string; export declare function formatLoadBalancerList(lbs: LoadBalancer[]): string; export declare function formatLoadBalancerDetails(lb: LoadBalancer): string; export declare function formatImageList(images: Image[]): string; export declare function formatImageDetails(img: Image): string; export declare function formatCloudSshKeyList(keys: CloudSshKey[]): string; export declare function formatCloudSshKeyDetails(key: CloudSshKey): string; export declare function formatCertificateList(certs: Certificate[]): string; export declare function formatCertificateDetails(cert: Certificate): string; export declare function formatPlacementGroupList(groups: PlacementGroup[]): string; export declare function formatPlacementGroupDetails(pg: PlacementGroup): string;