import type { Core } from '@strapi/types';
/**
 * @description
 * Manages the lifecycle of audit logs. Accessible via strapi.get('audit-logs-lifecycles')
 */
declare const createAuditLogsLifecycleService: (strapi: Core.Strapi) => {
    register(): Promise</*elided*/ any>;
    unsubscribe(): /*elided*/ any;
    destroy(): /*elided*/ any;
};
export { createAuditLogsLifecycleService };
//# sourceMappingURL=lifecycles.d.ts.map