import { IRemoteConfig } from '@magicbell/react-headless'; import React from 'react'; interface Props { config: IRemoteConfig; } /** * Component that renders the web push subscription page in an invisible iframe * to refresh the user's subscription. * * @example * */ export default function WebPushRefresh({ config }: Props): React.JSX.Element; export {};