type Callback = (time?: DOMHighResTimeStamp) => any; /** * Wait for the next frame to execute a function. * @link https://js-toolkit.studiometa.dev/utils/nextFrame.html */ export declare function nextFrame(): Promise; export declare function nextFrame(callback?: T): Promise>; export {};