/** * BP Player Styles * * Exports CSS as strings for injection into components. */ import variablesCss from './variables.css'; import globalCss from './global.css'; export { variablesCss, globalCss }; /** * Injects global styles into the document head. * Safe to call multiple times - will only inject once. */ export declare function addGlobalStyles(): void; /** * Creates a template element with styles and HTML content. * Caches the template for reuse. */ export declare function createTemplate(name: string, html: string): () => HTMLTemplateElement; /** * Combines CSS and HTML into a template string. */ export declare function templateWithStyles(css: string, html: string): string; //# sourceMappingURL=index.d.ts.map