import type { TypeStateManagerConfigs } from "./state-manager";
import { StateManager } from "./state-manager";
export declare class Computed<DataType> extends StateManager<DataType> {
    get value(): any;
    set value(_: any);
    constructor(callback: () => DataType, triggers: (StateManager<any> | Computed<any>)[], config?: TypeStateManagerConfigs<DataType>);
}
