import * as React from 'react'; import type { BaseUIComponentProps } from '../../utils/types'; /** * * Demos: * * - [Alert Dialog](https://base-ui.netlify.app/components/react-alert-dialog/) * * API: * * - [AlertDialogClose API](https://base-ui.netlify.app/components/react-alert-dialog/#api-reference-AlertDialogClose) */ declare const AlertDialogClose: React.ForwardRefExoticComponent>; declare namespace AlertDialogClose { interface Props extends BaseUIComponentProps<'button', OwnerState> { } interface OwnerState { open: boolean; } } export { AlertDialogClose };