import { type CoreRoot, type WaiverDirective } from './core/engine.js'; export type TrackerExportOptions = { projectRoot?: string; limit?: number; issues?: string[]; }; export type ExportedRoot = CoreRoot & { waivers?: WaiverDirective[]; }; /** Parse + validate the live tracker and return the validated root. Throws if the * store does not satisfy the preset's schema (the root must be well-formed to be * a meaningful export). */ export declare function exportTrackerRoot(options?: TrackerExportOptions): Promise;