import type { TelescopeEntry } from '../../../types.js'; export interface BatchPageProps { basePath: string; batchId: string; entries: TelescopeEntry[]; } /** * Batch view — lists every entry sharing one `batchId`. Typically a single * HTTP request and all the queries / cache lookups / events / model writes * it triggered. The framework's batch propagation through the request * lifecycle is what makes this useful. */ export declare function BatchPage(props: BatchPageProps): string; //# sourceMappingURL=Batch.d.ts.map