import type { CLIProgramMeta } from '@pikku/core/cli'; import type { Config } from '../../../../types/application-types.js'; /** * Collect all unique renderer names from CLI metadata (populated by inspector) */ export declare function collectRendererNames(programMeta: CLIProgramMeta): Set; /** * Serializes a CLI-over-Channel client bootstrap file * Similar to local CLI bootstrap but uses WebSocket connection */ export declare function serializeChannelCLIClient(programName: string, programMeta: CLIProgramMeta, clientFile: string, config: Config, cliBootstrapPath: string, channelRoute?: string, renderersMeta?: Record): string;