/** * The type of the detected model, or no format if one is not found. */ import ParsingBuffer from "../parsing/parsing_buffer.js"; export declare enum ModelFormatType { IFC = 0, AP214 = 1 } /** * Format detector for finding the format of a model from a buffer in conway. */ export default class ModelFormatDetector { /** * Detect the model format * * @param input * @return {ModelFormatType | undefined} The type of the model, or undefined * if none can be found. */ static detect(input: ParsingBuffer): ModelFormatType | undefined; } //# sourceMappingURL=model_format_detector.d.ts.map