export interface IntervalImpl {
    wait(item: unknown, condition: (onTick: (cb: () => void) => void) => Promise<void>): Promise<void>;
}
export declare type IInterval = IntervalImpl;
