import { type VaultRow } from "../registry/repo.js"; import { type DestinationPresentation } from "./destination-presentation.js"; export interface RollupTombstoneAggregate { count: number; latestSeen: string | null; } export interface ListFlowOptions { noTombstones?: boolean; includeRollupTombstones?: boolean; rollupThresholdDays?: number; nowIso?: string; } export interface ListFlowResult { vaults: VaultRow[]; destinations: Record; displayNames: Record; rollupTombstones?: Record; rollupThresholdDays?: number; rollupThresholdIso?: string; } export declare function listVaultsFlow(opts?: ListFlowOptions): Promise; export declare function formatHumanTable(vaults: readonly VaultRow[], rollupTombstones?: Record, displayNames?: Record): string; //# sourceMappingURL=list.d.ts.map