import { CoreCallbackEvent, FxError } from "@microsoft/teamsfx-api"; export declare type CoreCallbackFunc = (name: string, err?: FxError, data?: any) => void | Promise; export declare class CallbackRegistry { private static registry; static has(event: CoreCallbackEvent): boolean; static set(event: CoreCallbackEvent, func: CoreCallbackFunc): void; static get(event: CoreCallbackEvent): CoreCallbackFunc[]; static refresh(): void; } //# sourceMappingURL=callback.d.ts.map