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<ToolResponse>;
    getOnboardLubeAnalysisForm(args: OnboardLubeAnalysisFormArgs): Promise<ToolResponse>;
    getLubeOilRob(args: LubeOilRobArgs): Promise<ToolResponse>;
}
export {};
