import { Request, Response } from 'express';
export declare const getLogs: (req: Request, res: Response) => Promise<void>;
export declare const createLog: (data: {
    userId: string;
    action: string;
    targetCollection: string;
    targetId?: string;
    details: string;
    ipAddress?: string;
    userAgent?: string;
}) => Promise<void>;
//# sourceMappingURL=logs.controller.d.ts.map