import React from 'react'; interface HotReloadProps { hot: { subscribe: (callback: (event: { action: string; }) => void) => void; }; } export declare function HotReload({ hot }: HotReloadProps): React.ReactElement | null; export {};