interface Source { [key: string]: unknown; } type Path = number | string | Array; declare const setImmutable: (source: Source, path: Path, value: unknown) => Source | unknown; export { setImmutable }; export type { Path as SetImmutablePath, Source as SetImmutableSource, }; //# sourceMappingURL=setImmutable.d.ts.map