import { ActivityType } from '../entities/activity-log.entity'; export declare class QueryActivityLogsDto { user_id?: string; activity_type?: ActivityType; resource_type?: string; resource_id?: string; from_date?: string; to_date?: string; page?: number; limit?: number; }