export interface TrainingPollResult { ready: boolean; neverTrained?: boolean; lastPayload?: any; regenerationInFlight?: boolean; traitsComplete?: boolean; } export interface NormalizedTrainingStatus { ready: boolean; statusUrl?: string; pollIntervalMs?: number; neverTrained?: boolean; regenerationInFlight?: boolean; traitsComplete?: boolean; lastPayload?: any; } export interface PollTrainingStatusParams { statusUrl: string; token: string; pollIntervalMs?: number; } export declare function pollTrainingStatus({ statusUrl, token, pollIntervalMs, }: PollTrainingStatusParams): Promise; export declare function normalizeTrainingFromResolution(training: any): NormalizedTrainingStatus; //# sourceMappingURL=pollTrainingStatus.d.ts.map