/** * Describes an object in the state tree. * https://fnx.js.org/docs/api/object.html * @param clazz The class of this object */ export declare function object(clazz: new (initialState?: any) => T): T;