import { LedgerStorage } from './ledger-storage'; import { type DriftResult } from './types'; export declare class DriftCalculator { private readonly storage; constructor(storage: LedgerStorage); calculateDrift(environment: string): Promise; }