import { ActivityLogCategory, ActivityLogEntry, ActivityLogLevel } from './activityLog.types'; export interface ActivityLogQuery { text: string; category: 'all' | ActivityLogCategory; level: 'all' | ActivityLogLevel; } export declare function filterActivityLogs(entries: ActivityLogEntry[], query: ActivityLogQuery): ActivityLogEntry[]; export declare function activityLogSearchText(entry: ActivityLogEntry): string;