import { DashboardTotal, LoginVsRegister, RequestsOverTime } from "../types";
export declare const downloadLogs: ({ start, end }: {
    start?: Date | string;
    end?: Date | string;
}) => Promise<void>;
export declare const getDashboardTotals: () => Promise<DashboardTotal>;
export declare const requestsOverTime: (filterBy?: string) => Promise<RequestsOverTime[]>;
export declare const loginVsRegister: (filterBy?: string) => Promise<LoginVsRegister[]>;
export declare const mostAccessed: (filterBy?: string) => Promise<RequestsOverTime[]>;
