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) => void; features: { overlay: (WrappedComponent: React.ComponentType) => (props?: Record) => React.JSX.Element; }; }; export type OverlayFeatures = ReturnType>["features"];