/** * Defensive reset for inheritable CSS properties that cross the shadow * boundary. Host pages frequently set these on `body` or layout wrappers * (`text-align: center`, `text-transform: uppercase`, etc.) and they would * otherwise inherit into our shadow trees and distort component rendering. * * Properties intentionally NOT reset: `color`, `font-family`, `font-size`. * Those are how design tokens flow into components — consumers legitimately * theme by inheriting these from an ancestor. * * Slotted content is unaffected: slotted nodes inherit from their flat-tree * parent (the host's tree), not from `:host`, which is the desired behavior * for user-provided slot content. */ export declare const hostReset: import("lit").CSSResult; //# sourceMappingURL=host-reset.d.ts.map