/// import type { CommonPropsType } from '../../types'; import type { DataType } from '../../../configs/components/wd-form'; export declare const WdFormCell: ({ className, layout, labelPosition, label, children, }: WdFormCellProps) => JSX.Element; export interface WdFormCellProps extends CommonPropsType, DataType { label?: string; labelPosition?: string; }