/// import type { CommonFormPropsType } from '../types'; import './style'; export default function FormCell({ className, style, label, layout, children, multiCell, requiredFlag, size, }: PropsType): JSX.Element; export interface PropsType extends CommonFormPropsType { multiCell?: boolean; size?: string; }