import { FormGroup } from '@angular/forms';
import { DropDownFormSectionData } from '../dropdown-form-section/dropdown-form-section-data';
export declare class OrderFormSectionData {
    parentForm: FormGroup;
    titleText: string;
    subtitleText: string;
    descriptionText: string;
    iconUrl: string;
    primarySection: DropDownFormSectionData;
    subsections: DropDownFormSectionData[];
}
