import { ToolResponse } from "../../types/index.js"; interface PmsHistoricalDataArgs { imo: string; machinery_name: string; start_date?: string; end_date?: string; session_id?: string; } interface MonthEndFormArgs { imo: string; session_id?: string; } export declare class PmsToolHandler { private typesenseClient; constructor(); getVesselPmsHistoricalData(args: PmsHistoricalDataArgs): Promise; getMonthEndFormSubmissionStatus(args: MonthEndFormArgs): Promise; getHistoricalFormSubmissionStatus(args: MonthEndFormArgs): Promise; getFleetPmsWeeklyOverview(args: MonthEndFormArgs): Promise; getMonthEndConsolidatedTechnicalReport(args: MonthEndFormArgs): Promise; getFleetMonthEndTechnicalFormsStatus(args: MonthEndFormArgs): Promise; } export {};