import { ChunkDefinition } from '@teleporthq/teleport-types'; export default class Builder { private chunkDefinitions; private generators; constructor(chunkDefinitions?: ChunkDefinition[]); /** * Links all chunks together based on their requirements. Returns an array * of ordered chunk names which need to be compiled and glued together. */ link(chunkDefinitions?: ChunkDefinition[]): string; generateByType(type: string, content: unknown): string; private cleanupInvalidChunks; } //# sourceMappingURL=index.d.ts.map