import { SignalValue } from '../signals'; import { ThreadGenerator } from '../threading'; /** * Perform a transition that doesn't do anything. * * @remarks * This is useful when you want to achieve a transition effect by animating * objects in the scenes. It will overlay the scenes on top of each other for * the duration of the transition. * * @param duration - The duration of the transition. * @param previousOnTop - Whether the previous scene should be rendered on top. */ export declare function waitTransition(duration?: number, previousOnTop?: SignalValue): ThreadGenerator; //# sourceMappingURL=waitTransition.d.ts.map