export interface VisualizerExtensionModuleResult { code: string | null; contentHash: string | null; error: string | null; watchPaths: string[]; } export interface VisualizerThemeResult { variables: Record; error: string | null; watchPaths: string[]; } /** Compile preset + repo presentation into one host-React browser module. */ export declare function buildVisualizerExtensionModule(input: { projectRoot: string; }): Promise; /** Load only documented color tokens and map them to host-scoped CSS variables. */ export declare function loadVisualizerTheme(input: { projectRoot: string; }): Promise;