import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface AlertActionProps extends ComposableProps<'div'> { /** * The action content (typically buttons). */ children?: React.ReactNode; } /** * AlertAction Component * * A composable component for action buttons in an Alert. * Typically contains Button components. * * @public * * @example * ```tsx * * * Information * This is an info alert * * * * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Provides proper spacing for action elements. */ export declare const AlertAction: React.ForwardRefExoticComponent>; //# sourceMappingURL=AlertAction.d.ts.map