export declare const createCancelableTimeout: () => {
    start: (cb: () => void, delay: number) => void;
    cancel: () => void;
};
