import { DialogBaseProps } from '../base'; /** * Props for {@link Dialog}. * Extends {@link DialogBaseProps}. * * @category Dialog */ export type DialogProps = Omit; /** * Dialog component used to display modal or non-modal content above the app layer. * * @category Dialog * @function * @param props - All dialog props inherited from {@link DialogBase}. * * @example * setOpen(false)}> * Content * */ export declare const Dialog: import('react').ForwardRefExoticComponent>;