import { ISpliceable } from "../../../common/sequence.js"; export interface ISpreadSpliceable { splice(start: number, deleteCount: number, ...elements: T[]): void; } export declare class CombinedSpliceable implements ISpliceable { private spliceables; constructor(spliceables: ISpliceable[]); splice(start: number, deleteCount: number, elements: T[]): void; }