export type TableEstimate = { table: string; estimate: number; }; export type MetaData = { lastProcessedHeight: number; lastProcessedBlockTimestamp: number; lastProcessedTimestamp: number; targetHeight: number; chain: string; specName: string; genesisHash: string; indexerHealthy: boolean; indexerNodeVersion: string; queryNodeVersion: string; startHeight?: number; rowCountEstimate: TableEstimate[]; deployments: Record; historicalStateEnabled: boolean | 'height' | 'timestamp'; };