/** * Decorator for the beforeCreate hook */ export declare function beforeCreate(): MethodDecorator; /** * Decorator for the afterCreate hook */ export declare function afterCreate(): MethodDecorator; /** * Decorator for the beforeUpdate hook */ export declare function beforeUpdate(): MethodDecorator; /** * Decorator for the afterUpdate hook */ export declare function afterUpdate(): MethodDecorator; /** * Decorator for the beforeSave hook * This hook is called before both create and update operations */ export declare function beforeSave(): MethodDecorator; /** * Decorator for the afterSave hook * This hook is called after both create and update operations */ export declare function afterSave(): MethodDecorator; /** * Decorator for the beforeDelete hook */ export declare function beforeDelete(): MethodDecorator; /** * Decorator for the afterDelete hook */ export declare function afterDelete(): MethodDecorator; /** * Decorator for the beforeFind hook */ export declare function beforeFind(): MethodDecorator; /** * Decorator for the afterFind hook */ export declare function afterFind(): MethodDecorator;