/** * Simple test function for the OPC module */ declare function testOpcModule(filePath: string): Promise<{ success: boolean; primaryModelPath: string; error?: undefined; } | { success: boolean; error: unknown; primaryModelPath?: undefined; }>; export { testOpcModule }; //# sourceMappingURL=test.d.ts.map