/** @internal */ export interface NotificationSettingsContextType { enabled: boolean; hasReadPermission: boolean; hasWritePermission: boolean; toggleNotifications: () => Promise; loading: boolean; hasNotFoundError: boolean; } /** @internal */ export declare const NotificationSettingsContext: import("react").Context;