import { LogService } from './log.service';
export declare class LogController {
    private logService;
    constructor(logService: LogService);
    getById(id: number): Promise<{
        success: boolean;
        messages: string[];
        data: {};
    }>;
    list(page: any, limit: any, sorts: any, filters: any): Promise<{
        success: boolean;
        messages: string[];
        data: {};
    }>;
}
