import { Dictionary, Dispose } from '../types';
export declare function derived(target: any, propertyKey: string, descriptor: PropertyDescriptor): any;
type InitParams = {
    instance: Dictionary;
    disposers: Dispose[];
};
export declare function initDerived({ disposers, instance }: InitParams): void;
export {};
