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