interface Props {
    onClick: () => void;
}
/**
 *
 * @example
 * <EnablePushNotificationsButton onClick={enableNotifications} />
 */
export default function EnablePushNotificationsButton({ onClick }: Props): import("@emotion/react/jsx-runtime").JSX.Element;
export {};
