import { GetPropertyType } from './get.types';
export type SetProperty = <TObject, TPath extends string>(object: TObject, path: TPath, value: GetPropertyType<TObject, TPath>) => void;
