import type { BootConfig, Cancellation, Failover, Firewall, FirewallTemplate, IP, LinuxConfig, Rdns, RescueConfig, Reset, Server, ServerDetails, ServerMarketProduct, ServerProduct, ServerTransaction, SshKey, StorageBox, StorageBoxSnapshot, StorageBoxSubaccount, Subnet, Traffic, VSwitch, Wol } from "./types.js"; export declare function formatServerList(servers: { server: Server; }[]): string; export declare function formatServerDetails(server: ServerDetails): string; export declare function formatResetOptions(reset: Reset): string; export declare function formatResetResult(reset: Reset, type: string): string; export declare function formatBootConfig(config: BootConfig, serverNumber: number): string; export declare function formatRescueActivation(rescue: RescueConfig): string; export declare function formatLinuxActivation(linux: LinuxConfig): string; export declare function formatIpList(ips: { ip: IP; }[]): string; export declare function formatIpDetails(ip: IP): string; export declare function formatSubnetList(subnets: { subnet: Subnet; }[]): string; export declare function formatFailoverList(failovers: { failover: Failover; }[]): string; export declare function formatFailoverSwitch(failover: Failover): string; export declare function formatRdnsList(entries: { rdns: Rdns; }[]): string; export declare function formatSshKeyList(keys: { key: SshKey; }[]): string; export declare function formatSshKeyDetails(key: SshKey): string; export declare function formatFirewall(firewall: Firewall): string; export declare function formatFirewallTemplateList(templates: { firewall_template: FirewallTemplate; }[]): string; export declare function formatVSwitchList(vswitches: { vswitch: VSwitch; }[]): string; export declare function formatVSwitchDetails(vswitch: VSwitch): string; export declare function formatStorageBoxList(boxes: { storagebox: StorageBox; }[]): string; export declare function formatStorageBoxDetails(box: StorageBox): string; export declare function formatStorageBoxSnapshots(snapshots: { snapshot: StorageBoxSnapshot; }[]): string; export declare function formatStorageBoxSubaccounts(subaccounts: { subaccount: StorageBoxSubaccount; }[]): string; export declare function formatTraffic(traffic: Traffic): string; export declare function formatWolResult(wol: Wol): string; export declare function formatServerProductList(products: { product: ServerProduct; }[]): string; export declare function formatServerMarketProductList(products: { product: ServerMarketProduct; }[]): string; export declare function formatTransactionList(transactions: { transaction: ServerTransaction; }[]): string; export declare function formatCancellation(cancellation: Cancellation): string;