import * as React from "react"; import * as react_jsx_runtime98 from "react/jsx-runtime"; //#region src/components/forms/FormLayout.d.ts declare function FormSection({ children, className }: { children: React.ReactNode; className?: string; }): react_jsx_runtime98.JSX.Element; declare function FormRow({ children, className }: { children: React.ReactNode; className?: string; }): react_jsx_runtime98.JSX.Element; declare function FormGrid({ children, cols, className }: { children: React.ReactNode; cols?: 1 | 2 | 3 | 4; className?: string; }): react_jsx_runtime98.JSX.Element; //#endregion export { FormGrid, FormRow, FormSection }; //# sourceMappingURL=FormLayout.d.ts.map