import type { SupabaseClient } from '@supabase/supabase-js'; export declare function getOrCreateInputDataset(galaxyDatasetId: string, analysisId: number, historyId: number, supabase: SupabaseClient, ownerId: string): Promise<{ id: number; state: any; datasetId: number; analysisId: number; } | undefined>; export declare function synchronizeInputDataset(galaxyDatasetId: string, analysisId: number, historyId: number, supabase: SupabaseClient, ownerId: string): Promise; export declare function isInputDatasetSync(galaxyDatasetId: string, ownerId: string): Promise;