import type { ChunkPlan, GenerateChunkPlanInput } from './types.js'; export type AnalyzeAndChunkInput = GenerateChunkPlanInput; export type AnalyzeAndChunkResult = ChunkPlan; export type AnalyzeTableInput = GenerateChunkPlanInput; export type AnalyzeTableResult = ChunkPlan; export declare function analyzeAndChunk(input: AnalyzeAndChunkInput): Promise; export declare function analyzeTable(input: AnalyzeTableInput): Promise; //# sourceMappingURL=analyze.d.ts.map