export declare function ocr({ filePath, apiKey, model, }: {
    filePath: string;
    apiKey?: string;
    model?: "google/gemini-2.0-flash-exp:free";
}): Promise<any>;
