export function runSideEffects({ key, setValue, getValue }: { key: T; setValue: (key: TSetValue, value: import("../../types").ConfigType[TSetValue]) => void; getValue: (key: TGetValue) => import("../../types").ConfigType[TGetValue]; }): void; export type ComputedPropertyDeclaration[]> = { key: TKey; deps: TDeps; fn: (args: Record & { [K in TDeps[number]]: import("../../types").ConfigType[K]; }) => import("../../types").ConfigType[TKey] | Promise; }; //# sourceMappingURL=side-effects.d.ts.map