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