import React from 'react'; import { TextFieldProps } from '../../../textField'; import { BaseSectionProps } from '../baseSection'; export declare type TextFieldsSectionProps = BaseSectionProps & Readonly<{ children: Array>; className?: string; tagName?: string; }>; export declare const TextFieldsSection: import("styled-components").StyledComponent<(props: TextFieldsSectionProps) => JSX.Element, any, {}, never>;