import type { NotifyButtonProps } from './notify-button-types.js'; /** * The `NotifyButton` allows users to turn notifications about updates of resources on or off. Common use cases include notifications about updates of saved filters, workflows, or entities. Users will be notified via e-mail. * @public */ export declare const NotifyButton: ((props: NotifyButtonProps & import("react").RefAttributes) => import("react").ReactElement | null) & { Content: (props: import("./components/Content.js").NotifyButtonContentProps & import("react").RefAttributes) => import("react").ReactElement | null; };