UNPKG

@base-ui-components/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

14 lines (13 loc) 481 B
import * as React from 'react'; import type { DialogRoot } from '../../dialog/root/DialogRoot.js'; /** * Groups all parts of the alert dialog. * Doesn’t render its own HTML element. * * Documentation: [Base UI Alert Dialog](https://base-ui.com/react/components/alert-dialog) */ declare const AlertDialogRoot: React.FC<AlertDialogRoot.Props>; declare namespace AlertDialogRoot { type Props = Omit<DialogRoot.Props, 'modal' | 'dismissible'>; } export { AlertDialogRoot };