/** * Base Controller class for bot command handling */ export declare abstract class BaseController { protected kakaoLink?: any; constructor(kakaoLink?: any); /** * Get all methods with decorators from this controller */ getDecoratedMethods(): { methodName: string; method: Function; commands?: string[]; }[]; } //# sourceMappingURL=BaseController.d.ts.map