import { Config } from '../types/Config.js'; /** * Generate index.html * * In server mode, the index.html is serveed directly by node HTTP server. * In build mode, the index.html is saved on disk, at `.rive/index.html`. */ export declare function getHtml(config: Config, type: 'server' | 'build'): string;