import { FrameIterable } from '../animation-description';
import { Frame } from '../frame/frame';
/**
 * @summary Combines multiple synchronous animations into a single iterable.
 * @category Animation
 */
export declare function combineSync<T extends Frame>(...animations: Iterable<T>[]): Iterable<T>;
/**
 * @summary Combines multiple asynchronous animations into a single async iterable.
 * @category Animation
 */
export declare function combine(...animations: FrameIterable[]): AsyncIterable<Frame>;
//# sourceMappingURL=combine.d.ts.map