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