/**
 * Exports the input as STEP
 *
 * @remarks
 */
import { BaseExporterSopParamsConfig } from './_BaseExporter';
import { CADExporterSopNode } from './_BaseExporterCAD';
import { SopType } from '../../poly/registers/nodes/types/Sop';
declare class ExporterSTEPSopParamsConfig extends BaseExporterSopParamsConfig {
}
export declare class CADExporterSTEPSopNode extends CADExporterSopNode<ExporterSTEPSopParamsConfig> {
    paramsConfig: ExporterSTEPSopParamsConfig;
    static type(): SopType;
    fileExtension(): string;
    createBlob(): Promise<Blob>;
}
export {};
