export * from './capstoneTypes'; export * from './capstoneEnums'; /** Initialize the capstone disassembly framework. * This function will take a while the first time and * return a resolved promise if called again. * @returns A promise that resolves with the capstone framework interface * after the framework has been initialized. */ export declare function initialize(): Promise; /** Returns the initialized capstone framework interface or undefined if * initialize() has not yet been called. * @returns the initialized capstone framework interface or undefined if * initialize() has not yet been called. */ export declare function tryGetInstance(): import("./capstoneTypes").Capstone | undefined;