type ITickSyncRunner = () => any; type ITickRunner = () => Promise | any; export type ITick = (fn: ITickSyncRunner) => void; export declare function SyncTick(): ITick; export declare const syncTick: ITick; export declare function tick(fn: ITickRunner): Promise; export {};