import { type ButtonOwnProps } from '@dynatrace/strato-components/buttons'; import { type IntentWithoutResponseProps } from '../../core/slots/Intent/Intent.js'; /** * Renders a button that sends an intent without expecting a response. * Used when no `responseProperties` are provided. * @internal */ export declare const IntentButtonWithoutResponse: (props: Omit & Pick & { disabled?: boolean; } & import("react").RefAttributes) => React.ReactElement | null;