import React from 'react'; import type { NotificationItem } from 'react-cosmos-core'; type Props = { devServerOn: boolean; rendererUrl: null | string; pushNotification: (notification: NotificationItem) => unknown; }; export declare function RemoteButton({ devServerOn, rendererUrl, pushNotification, }: Props): React.JSX.Element | null; export {};