lune-ui-lib
Version:
Lune UI Components Library
11 lines (10 loc) • 374 B
TypeScript
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;