import { OpenCascadeInstance } from 'bitbybit-occt/bitbybit-dev-occt/bitbybit-dev-occt'; import { CacheHelper } from './cache-helper'; export declare const initializationComplete: (occ: OpenCascadeInstance, plugins: any, doNotPost?: boolean) => CacheHelper; declare type DataInput = { /** * Action data is used for cashing as a hashed number. */ action: { functionName: string; inputs: any; }; uid: string; }; export declare const onMessageInput: (d: DataInput, postMessage: any) => void; export {};