import type { UpdateProbeResult } from './app/updateProbe'; interface ProbeOptions { platform?: string; } export interface ProbeInternalResult { success: boolean; error?: string; probeResult?: UpdateProbeResult; endpoint?: string; platform?: 'ios' | 'android'; versionBuild?: string; versionBuildSource?: string; appId?: string; appIdSource?: string; nativeSource?: string; hints?: string[]; } export declare function probeInternal(options: ProbeOptions): Promise; export declare function probe(options: ProbeOptions): Promise; export {};