export interface FormLayoutProps { } /** * Use a form layout to arrange fields within a form using standard spacing. Every * nested field or group will stack along the block axis. If you want visually group * fields nested in a form layout, use a form layout group. */ export declare const FormLayout: "FormLayout" & { readonly type?: "FormLayout" | undefined; readonly props?: FormLayoutProps | undefined; readonly children?: true | undefined; }; export interface FormLayoutGroupProps { } /** * Use a form layout group to group fields within a form layout. Grouped fields will * appear inline with one another when possible, with each field taking up equal * spacing. */ export declare const FormLayoutGroup: "FormLayoutGroup" & { readonly type?: "FormLayoutGroup" | undefined; readonly props?: FormLayoutGroupProps | undefined; readonly children?: true | undefined; }; //# sourceMappingURL=FormLayout.d.ts.map