import React from 'react';
import type { ComposableProps } from '../../../lib/slot';
/**
* AlertDialogAction component props
*
* @public
*/
export interface AlertDialogActionProps extends ComposableProps<'button'> {
/**
* Action button content
*/
children: React.ReactNode;
}
/**
* AlertDialogAction Component
*
* The confirm/action button for the alert dialog.
* Styled as a destructive button by default.
* Closes the alert dialog when clicked.
*
* @public
*
* @example
* ```tsx
*
* Cancel
* Delete
*
* ```
*/
export declare const AlertDialogAction: React.ForwardRefExoticComponent>;
//# sourceMappingURL=AlertDialogAction.d.ts.map