import React from 'react'; import hoistNonReactStatic from 'hoist-non-react-statics'; import { IStatusStore } from './store/status'; export interface StatusScopedProps { statusStore: IStatusStore; } export declare function StatusScoped & StatusScopedProps>>(ComposedComponent: T): { new (props: JSX.LibraryManagedAttributes, "statusStore">> & {}): { store?: ({ visibleState: any; disableState: any; staticState: any; } & import("mobx-state-tree/dist/internal").NonEmptyObject & { setVisible(key: string, value?: boolean | undefined): void; setDisable(key: string, value?: boolean | undefined): void; setStatic(key: string, value?: boolean | undefined): void; resetAll(): void; } & import("mobx-state-tree").IStateTreeNode, [undefined]>; disableState: import("mobx-state-tree").IOptionalIType, [undefined]>; staticState: import("mobx-state-tree").IOptionalIType, [undefined]>; }, { setVisible(key: string, value?: boolean | undefined): void; setDisable(key: string, value?: boolean | undefined): void; setStatic(key: string, value?: boolean | undefined): void; resetAll(): void; }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined; ref: any; childRef(ref: any): void; getWrappedInstance(): any; componentWillUnmount(): void; render(): React.JSX.Element; context: unknown; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly, "statusStore">> & {}>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void; forceUpdate(callback?: (() => void) | undefined): void; readonly props: Readonly, "statusStore">> & {}>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly, "statusStore">> & {}>, nextState: Readonly<{}>, nextContext: any): boolean; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly, "statusStore">> & {}>, prevState: Readonly<{}>): any; componentDidUpdate?(prevProps: Readonly, "statusStore">> & {}>, prevState: Readonly<{}>, snapshot?: any): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly, "statusStore">> & {}>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly, "statusStore">> & {}>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly, "statusStore">> & {}>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly, "statusStore">> & {}>, nextState: Readonly<{}>, nextContext: any): void; }; displayName: string; ComposedComponent: React.ComponentType; contextType?: React.Context | undefined; } & hoistNonReactStatic.NonReactStatics & { ComposedComponent: T; };