import type { PublicSkillPricing } from "./pricing"; export declare const REMOTE_SKILL_RUN_CONTRACT_VERSION: 1; export interface RemoteSkillRunContract { contractVersion: typeof REMOTE_SKILL_RUN_CONTRACT_VERSION; id?: string; skill?: string; requestedSlug?: string; status?: string; exitCode?: number; correlationId?: string; costCents?: number; cost?: string; pricing?: PublicSkillPricing; createdAt?: string; startedAt?: string; completedAt?: string; durationMs?: number; outputType?: string; outputPreview?: unknown; errorCode?: string; errorMessage?: string; creditsUsed?: number; error?: string; code?: string; details?: unknown; balance?: string; balanceCents?: number; } export declare function normalizeRemoteSkillRunContract(payload: unknown, fallbackSkill?: string): RemoteSkillRunContract;