import { InputOf, InputGetAnalyticsLastPeriod, InputGetAnalyticsSize, Context } from '~server/data/interfaces'; declare const _default: { getAnalyticsLastPeriod: (_: any, { input }: InputOf, context: Context) => Promise<{ status: boolean; data?: undefined; } | { status: boolean; data: { fatal: any; error: any; warn: any; info: any; debug: any; trace: any; }; }>; getAnalyticsSize: (_: any, { input }: InputOf, context: Context) => Promise<{ status: boolean; data?: undefined; } | { status: boolean; data: { project: string; value: any; }; }>; }; export default _default;