import { ReactNode } from 'react'; import { SurfaceColor } from '../../utils'; import { DialogIconSlot } from '../../types'; export interface DialogContentProps { children?: ReactNode; icon?: ReactNode; showIcon?: boolean; iconColor?: SurfaceColor; iconSlot?: DialogIconSlot; className?: string; } export declare const DialogContent: { ({ children, iconSlot, icon, showIcon, iconColor, className }: DialogContentProps): import("react/jsx-runtime").JSX.Element | null; displayName: string; };