import { ComponentPropsWithRef, ReactNode } from 'react'; export interface DialogBodyProps extends ComponentPropsWithRef<'div'> { /** * Specify custom content for the Dialog */ children?: ReactNode; /** * Specify the text content for the Dialog. * For custom content, use children instead */ text?: string; } export declare const Root: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export declare const Body: typeof Root & { displayName: string; };