import * as React from 'react'; import type { HTMLAttributesWithRootRef } from '../../types'; import { type RemovableProps } from '../Removable/Removable'; export interface FormLayoutGroupProps extends HTMLAttributesWithRootRef, RemovableProps { /** * Направление отображения элементов формы. */ mode?: 'vertical' | 'horizontal'; /** * Только для режима horizontal. Дает возможность удалить всю группу `FormItem`. * * Режим `indent` предназначен для визуального отступа. */ removable?: boolean | 'indent'; /** * Дает возможность склеить несколько `FormItem`. */ segmented?: boolean; } /** * @see https://vkui.io/components/form-layout-group */ export declare const FormLayoutGroup: ({ children, mode, removable, segmented, removePlaceholder, onRemove, getRootRef, disabled, ...restProps }: FormLayoutGroupProps) => React.ReactNode; //# sourceMappingURL=FormLayoutGroup.d.ts.map