import { Slice, UnionSliceState } from "./slice.js"; //#region src/core/combine.d.ts /** * Combines multiple slices into a single slice. * * @param slices - The slices to combine. * @returns A new slice that represents the combination of the input slices. */ declare function combine[]>(...slices: Slices): Slice>; //#endregion export { combine }; //# sourceMappingURL=combine.d.ts.map