import type { SxProps } from '@mui/material';
import React from 'react';
declare const LabeledFormSection: ({ title, subTile, children, sx, titlePros, }: {
    children: React.ReactNode;
    title: string;
    subTile?: React.ReactNode;
    sx?: SxProps;
    titlePros?: Record<string, any>;
}) => import("react/jsx-runtime").JSX.Element;
export default LabeledFormSection;
