import { AttributeModel } from './attribute.model';
import { ChecklistModel } from './checklist.model';
export declare class FormModel {
    missionId: number;
    missionStatus: string;
    header: AttributeModel[];
    body: ChecklistModel[];
    footer: AttributeModel[];
}
