import { LedgerStorage } from './ledger-storage'; import { type BaselineRecord } from './types'; export declare class BaselineService { private readonly storage; constructor(storage: LedgerStorage); setBaseline(environment: string, revisionId?: string, setBy?: string): Promise; getBaseline(environment: string): Promise; }