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