import type { AlertChannel } from '../rest/alert-channels.js'; import type { AlertNotification } from '../rest/alert-notifications.js'; import { type OutputFormat } from './render.js'; export interface AlertChannelPaginationInfo { page: number; limit: number; total: number; } export declare function titleFromConfig(channel: AlertChannel): string; export declare function formatAlertChannels(channels: AlertChannel[], format: OutputFormat): string; export declare function formatAlertChannelPaginationInfo(pagination: AlertChannelPaginationInfo): string; export declare function formatAlertChannelNavigationHints(pagination: AlertChannelPaginationInfo): string; export declare function formatAlertChannelSubscriptions(channel: AlertChannel, format: OutputFormat): string; export declare function formatAlertChannelDetail(channel: AlertChannel, format: OutputFormat): string; export declare function formatAlertNotificationLogs(logs: AlertNotification[], format: OutputFormat): string;