import type { JSX } from 'solid-js'; import type { DisclosureStateRenderProps } from '../../states/create-disclosure-state'; import type { HeadlessPropsWithRef, ValidConstructor } from '../../utils/dynamic-prop'; export type AlertDialogPanelProps = HeadlessPropsWithRef; /** * The content of an `AlertDialog`. Traps `Tab` while the dialog is open and * restores focus to the trigger on close. * * Renders a `
` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/alert-dialog.md} */ export declare function AlertDialogPanel(props: AlertDialogPanelProps): JSX.Element; //# sourceMappingURL=AlertDialogPanel.d.ts.map