export declare class InspectionAnswerDto {
    question_id: number;
    selected_answer_id: number;
}
export declare class CreateInspectionReportWithAnswersDto {
    fleet_id: number;
    driver_id: number;
    answers: InspectionAnswerDto[];
}
