/** The type of chunk. */ export declare const ChunkType: { readonly Page: "page"; readonly Document: "document"; readonly Section: "section"; }; export type ChunkType = (typeof ChunkType)[keyof typeof ChunkType] | string;