import { Dialog as DialogPrimitive } from '@base-ui/react'; export interface DialogContentProps extends DialogPrimitive.Popup.Props { showCloseButton?: boolean; overlay?: DialogPrimitive.Backdrop.Props & { blur?: boolean; }; /** * Toggles nested dialog animation (scaling and translation) * `@default` true */ showNestedAnimation?: boolean; } export declare function DialogContent({ className, children, showCloseButton, overlay, showNestedAnimation, ...props }: DialogContentProps): import("react/jsx-runtime").JSX.Element; export declare namespace DialogContent { var displayName: string; } //# sourceMappingURL=dialog-content.d.ts.map