import React from 'react'; import { AriaDialogProps } from 'react-aria'; type DialogProps = AriaDialogProps & { /** Optional title tag * * Important! If you don't pass a title, you must pass an `aria-label` prop to the dialog. */ title?: string; /** The content of the dialog */ children: React.ReactNode; }; /** Internal component for creating card select popovers */ declare const Dialog: ({ title, children, ...props }: DialogProps) => JSX.Element; export { Dialog };