import { Dictionary } from "./validator"; export declare enum Suffix { Elements = "elements", Segments = "segments" } export declare abstract class TableBuilder { private type; private version?; private location?; protected fileSuffix: Suffix; constructor(type: string, suffix: Suffix); forVersion(version: string): TableBuilder; specLocation(location: string): TableBuilder; protected getDefinitionFileLoc(): string | undefined; abstract build(): Dictionary; } //# sourceMappingURL=tableBuilder.d.ts.map