import * as React from 'react'; import { ErrorContainerClasses } from "./error-container/errorContainerClasses.mjs"; import { EventSkeletonClasses } from "./event-skeleton/eventSkeletonClasses.mjs"; /** * Styling injected by the consuming product into the shared internal components * (e.g. `ErrorContainer`, `EventSkeleton`) so they stay decoupled from any * product-specific styled context. */ export interface SharedComponentsStyledContextValue { classes: ErrorContainerClasses & EventSkeletonClasses; } export declare const SharedComponentsStyledContext: React.Context; export declare function useSharedComponentsStyledContext(): SharedComponentsStyledContextValue;