import { IAnyModelType, IModelType } from "mobx-state-tree"; declare type Without = Pick>; declare type WithRefsModelType< T extends IAnyModelType, OTHERS > = T extends IModelType ? IModelType, O & OTHERS, C, S> : never; export declare function withTypedRefs(): ( model: T ) => WithRefsModelType; export {};