import React from 'react';
export interface DialogContentProps {
    /**
     * If `true`, a loading component will be shown instead of the children.
     */
    loading?: boolean;
    /**
     * The children of the component.
     */
    children: React.ReactNode;
}
