/** * Generates the Overview tab content with a comprehensive user guide covering what PrismCast is, video quality expectations, quick start instructions, tuning speed, * channel authentication, working with channels, and system requirements. * @param baseUrl - The base URL for the server. * @returns HTML content for the Overview tab. */ export declare function generateOverviewContent(baseUrl: string): string; /** * Generates the Help tab content with updating instructions, platform notes, troubleshooting, and known limitations. * @returns HTML content for the Help tab. */ export declare function generateHelpContent(): string; /** * Generates the API Reference tab content with endpoint documentation. * @returns HTML content for the API Reference tab. */ export declare function generateApiReferenceContent(): string; /** * Generates the Channels tab content. This wraps the channels panel from config.ts and includes the login modal for channel authentication. * @returns HTML content for the Channels tab. */ export declare function generateChannelsTabContent(): string; /** * Generates the Logs tab content with the log viewer controls and display area. Uses Server-Sent Events for real-time log streaming instead of polling. * @returns HTML content for the Logs tab. */ export declare function generateLogsContent(): string; /** * Generates the Configuration tab content with subtabs for channels, settings, advanced, and backup. * @returns HTML content for the Configuration tab. */ export declare function generateConfigContent(): string;