import type { ReactNode } from 'react'; export declare function FieldGrid({ children, className }: { children: ReactNode; className?: string; }): import("react").JSX.Element; export declare function FieldCell({ children, fullWidth, className, }: { children: ReactNode; /** Span both columns — textareas, line-items grids, embedded relations. */ fullWidth?: boolean; className?: string; }): import("react").JSX.Element; export declare function FieldLabel({ htmlFor, required, children, }: { htmlFor?: string; required?: boolean; children: ReactNode; }): import("react").JSX.Element; //# sourceMappingURL=field-grid.d.ts.map