/// <reference types="react" />
import { IField } from "../../../constants/model-interfaces";
import { ISectionError } from "../../../constants/common-interface";
declare function Sections(props: IProps): JSX.Element;
export declare function Section(props: any): JSX.Element;
interface IProps {
    sections: Array<IField>;
    activeIndex: number;
    error: ISectionError;
}
export default Sections;
