import { type LedgerStorage } from './ledger-storage'; import { type PageBaselineEntry } from './types'; export declare class PageSourceBaselineStore { private readonly storage; constructor(storage: LedgerStorage); list(): PageBaselineEntry[]; getByApiName(apiName: string): PageBaselineEntry | undefined; upsert(entry: PageBaselineEntry): void; remove(apiName: string): void; }