import React from 'react'; import { IStatusStore } from './store/status'; export interface StatusScopedProps { statusStore: IStatusStore; } export interface StatusScopedWrapperProps { children: (props: { statusStore: IStatusStore; }) => JSX.Element; } export declare function StatusScopedWrapper({ children }: StatusScopedWrapperProps): JSX.Element; export declare function StatusScoped & StatusScopedProps>>(ComposedComponent: T): (props: JSX.LibraryManagedAttributes, keyof StatusScopedProps>> & {}, ref: any) => React.JSX.Element;