import { type ReactNode } from "react"; export interface StyleInjectionContextType { value?: boolean; } export declare function useStyleInjection(enableStyleInjection?: boolean): boolean; export interface StyleInjectionProviderProps extends StyleInjectionContextType { children: ReactNode; } export declare function StyleInjectionProvider(props: StyleInjectionProviderProps): import("react/jsx-runtime").JSX.Element;