import type { OutcomeResponse } from "./wire"; export interface Outcome { index: number; iconUrlLow: string; iconUrlMedium: string; iconUrlHigh: string; name: string; nameLong?: string; } export declare class OutcomeValidationError extends Error { readonly details: string[]; constructor(name: string, details: string[]); } export declare function outcomeFromWire(source: OutcomeResponse): Outcome; //# sourceMappingURL=outcome.d.ts.map