/** Nav chrome style slot — dashboard vs settings. Colors unified for now; texture hooks use the class. */ export type NavChromeStyle = 'dashboard' | 'settings'; /** Document hint for first paint before framework props land. */ export declare const NAV_STYLE_HINT_ATTR = "data-nav-style"; export declare function readNavStyleAttr(attr: string | null): NavChromeStyle | undefined; export declare function setNavStyleHint(style: NavChromeStyle): void; export declare function clearNavStyleHint(): void; export declare function resolveNavChromeStyle(styleProp: NavChromeStyle, hostAttr: string | null, docHint?: string | null): NavChromeStyle; export declare function shouldResyncNavChromeStyle(renderedStyle: NavChromeStyle, style: NavChromeStyle): boolean; //# sourceMappingURL=nav-chrome.d.ts.map