import { BoxProps } from '../internals/Box'; export interface FormStackProps extends BoxProps { /** * Set the layout of the elements within the form. * 'horizontal': Left and right columns layout. * 'vertical': Top and bottom layout. * 'inline': Elements are placed inline. */ layout?: 'horizontal' | 'vertical' | 'inline'; /** * The fluid property allows the form elements to fill 100% of the container width. * Only valid in vertical layouts. */ fluid?: boolean; } /** * The `