/**
 * Exports the input as OBJ
 *
 * @remarks
 */
import { ExporterSopNode, BaseExporterSopParamsConfig } from './_BaseExporter';
import { SopExporter } from '../../poly/registers/nodes/types/Sop';
declare class ExporterOBJSopParamsConfig extends BaseExporterSopParamsConfig {
}
export declare class ExporterOBJSopNode extends ExporterSopNode<ExporterOBJSopParamsConfig> {
    paramsConfig: ExporterOBJSopParamsConfig;
    static type(): SopExporter;
    fileExtension(): string;
    createBlob(): Promise<Blob>;
}
export {};
