/** * Decorator to ensure the class is initialized before executing a method * * @param {any} target * @param {string} propertyKey * @param {PropertyDescriptor} descriptor * @returns {PropertyDescriptor} */ declare const ensureInitialized: (target: any, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor; export { ensureInitialized };