import { ReactNode } from 'react'; import { TSizeAll } from '../../types'; export interface FormComponentBodyUIProps extends React.HTMLAttributes { children: ReactNode; /** * Applies `border-radius`, `gap`, `padding-inline`, and `height` styles to the component according to the specified size. * If not provided, the component will have no size-related styles. * @default `undefined` */ size?: TSizeAll; isTransparent?: boolean; isError?: boolean; /** * Controls the vertical growth behavior of the component. * - If `true`, the component's height will be styled using `min-height` according to the `size` prop, and `height` will be set to `0`. * - If `false`, the component's height will be styled using `height` according to the `size` prop. */ canGrowVertically?: boolean; } export declare const FormComponentBodyUI: import('react').ForwardRefExoticComponent>; //# sourceMappingURL=FormComponentBodyUI.d.ts.map