/** * Represents a processed CSS result that can be applied to a component. * This class handles the actual CSS text and provides methods to apply it to elements. */ export declare class CSSResult { private cssText; private styleSheet; private adoptedStyleSheets; constructor(cssText: string); /** * Gets the CSS text content */ toString(): string; /** * Gets or creates a CSSStyleSheet for this CSS result */ private getStyleSheet; /** * Applies the styles to a given shadow root */ applyTo(shadowRoot: ShadowRoot): void; /** * Removes the styles from a given shadow root */ removeFrom(shadowRoot: ShadowRoot): void; } //# sourceMappingURL=css-result.d.ts.map