import React from "react";
export default function OverlayCreator(): () => {
    /**
     * Fires when any Reactotron message arrives.
     */
    onCommand: (command: import("lib/reactotron-core-contract/dist/types/src").Command<import("lib/reactotron-core-contract/dist/types/src").CommandTypeKey, any>) => void;
    features: {
        overlay: (WrappedComponent: React.ComponentType) => (props?: Record<string, any>) => React.JSX.Element;
    };
};
export type OverlayFeatures = ReturnType<ReturnType<typeof OverlayCreator>>["features"];
