import { ToolResponse } from "../../types/index.js"; interface LubeOilShoreAnalysisArgs { imo: string; session_id?: string; } interface OnboardLubeAnalysisFormArgs { imo: string; session_id?: string; } interface LubeOilRobArgs { imo: string; session_id?: string; } export declare class LubeOilToolHandler { private typesenseClient; constructor(); getLubeOilShoreAnalysis(args: LubeOilShoreAnalysisArgs): Promise; getOnboardLubeAnalysisForm(args: OnboardLubeAnalysisFormArgs): Promise; getLubeOilRob(args: LubeOilRobArgs): Promise; } export {};