/** * templates.ts — HTML template strings for the install prompt. * * Produces clean, semantic HTML injected into the Shadow DOM. * All text is configurable via the config object. */ import type { UniversalPWAConfig, Platform } from '../types'; interface TemplateOptions { config: UniversalPWAConfig; platform: Platform; } /** Renders the main prompt card HTML */ export declare function renderPromptTemplate({ config, platform }: TemplateOptions): string; export {};