import { TaskCallback } from './type'; export declare const startTransition: (cb: () => void) => void; export declare const schedule: (callback: TaskCallback) => void; export declare const shouldYield: () => boolean; export declare const getTime: () => number;