import { type FieldDef } from '../components/ApplicationForm/ApplicationFormContent'; import { type ColumnsCount } from './ColumnCount'; import { type TitleProps } from './HeadlineType'; /** * @title Секция полей ввода */ export declare type SectionsProps = TitleProps & { columns?: ColumnsCount; inputs?: FieldDef[]; }; export interface InputSectionsType { /** @hidden */ sections?: SectionsProps[]; }