import type { UnistylesShadowRegistry as UnistylesShadowRegistrySpec } from './ShadowRegistry.nitro'; import type { ShadowNode, Unistyle, ViewHandle } from './types'; interface ShadowRegistry extends UnistylesShadowRegistrySpec { add(handle?: ViewHandle, styles?: Array): void; remove(handle?: ViewHandle): void; link(node: ShadowNode, styles?: Array): void; unlink(node: ShadowNode): void; suspend(node: ShadowNode): void; flush(): void; setScopedTheme(themeName?: string): void; getScopedTheme(): string | undefined; } type PrivateMethods = 'add' | 'remove' | 'link' | 'unlink' | 'suspend'; export declare const UnistylesShadowRegistry: Omit; export {}; //# sourceMappingURL=index.d.ts.map