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