import { type IntentWithResponseProps } from '../../core/slots/Intent/Intent.js'; import { ButtonOwnProps } from '../button/Button.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) => import("react").ReactElement | null;