import { type ReactNode } from 'react'; import type { AriaLabelingProps, DataTestId, DOMProps, MaskingProps, StylingProps } from '@dynatrace/strato-components/core'; /** @public */ export interface NotifyButtonContentProps extends DOMProps, AriaLabelingProps, StylingProps, MaskingProps, DataTestId { children?: (({ disabled, headingText, infoText, hasReadPermission, hasWritePermission, }: { disabled: boolean; headingText: string; infoText: string; hasReadPermission: boolean; hasWritePermission: boolean; }) => ReactNode) | ReactNode; } /** * The content of the NotifyButton overlay. * @public */ export declare const Content: (props: NotifyButtonContentProps & import("react").RefAttributes) => React.ReactElement | null;