import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
/**
* AlertDialogFooter component props
*
* @public
*/
export interface AlertDialogFooterProps extends ComposableProps<'div'> {
/**
* Footer content (typically AlertDialogCancel and AlertDialogAction)
*/
children: React.ReactNode;
}
/**
* AlertDialogFooter Component
*
* A composable footer section for the alert dialog.
* Typically contains AlertDialogCancel and AlertDialogAction buttons.
*
* @public
*
* @example
* ```tsx
*
* ...
*
* Cancel
* Delete
*
*
* ```
*/
export declare const AlertDialogFooter: React.ForwardRefExoticComponent>;
//# sourceMappingURL=AlertDialogFooter.d.ts.map