UNPKG

@manojadams/metaforms

Version:
12 lines (11 loc) 413 B
/// <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;