import { AttendanceRedisService } from "./attendance-redis/attendance-redis.service";
export declare class PHXRedisService {
    private readonly attendanceRedisService;
    private readonly logger;
    private readonly internalGrpcGateway;
    constructor(attendanceRedisService: AttendanceRedisService);
    debug(hostname: string): void;
    attendance: {
        setAttendance: (args: {
            key: string;
            value: string;
        }) => Promise<any>;
        getAttendance: (args: {
            key: string;
        }) => Promise<any>;
        hsetAttendance: (args: {
            key: string;
            field: string;
            value: string;
        }) => Promise<any>;
        hgetAttendance: (args: {
            key: string;
            field: string;
        }) => Promise<any>;
    };
}
