import { ConditionStatus } from '../helpers/enums'; export declare type ConditionGameData = { id: number; state: ConditionStatus; startsAt: number; ipfsHashHex: string; }; export declare type Condition = { id: number; odds: number[]; outcomes: number[]; gameData: ConditionGameData; }; export declare type Conditions = { conditions: Condition[]; latestBlock: number; }; export declare type FetchConditionsProps = { filters?: { resolved?: boolean; canceled?: boolean; }; from?: number; rangeWide?: number; }; declare const fetchConditions: (props?: FetchConditionsProps) => Promise; export default fetchConditions; //# sourceMappingURL=fetchConditions.d.ts.map