export declare const API_ENDPOINTS: { APPLICATION_STATISTICS: string; APPLICATION_USAGE_ALL: string; APPLICATION_USAGE_SINGLE: string; SESSIONS: string; SESSION_DETAILS: string; SESSION_TIMELINE: (sessionUid: string) => string; HOST_COUNTS: string; HOST_METRICS: string; USER_ACTIVITY: string; MACHINE_STATISTICS: (grouping: string) => string; MACHINE_SIZING_RECOMMENDATION_VIRTUALIZATION: string; MACHINE_SIZING_RECOMMENDATION_AZURE: string; UPLOAD_START_STATUS: string; NETSCALER_SYSTEM: string; NETSCALER_GATEWAY: string; NETSCALER_LOAD_BALANCER: string; NETSCALER_SYSTEM_V2: string; NETSCALER_GATEWAY_V2: string; NETSCALER_LOAD_BALANCER_V2: string; }; export declare const TIME_FRAMES: { readonly ONE_WEEK: "1W"; readonly ONE_MONTH: "1M"; }; export declare const SESSION_PRESETS: { readonly ACTIVITY: "activity"; readonly CLIENT: "client"; readonly CVAD: "cvad"; readonly HORIZON: "horizon"; readonly RESOURCES: "resources"; readonly UX: "ux"; readonly LIST: "list"; }; export declare const HOST_ENTITY_TYPES: { readonly USERS: "users"; readonly SESSIONS: "sessions"; readonly MACHINES: "machines"; }; export declare const USER_ACTIVITY_GRANULARITY: { readonly ONE_HOUR: "1h"; readonly FIVE_MINUTES: "5m"; }; export declare const MACHINE_GROUPING: { readonly MACHINE: "machine"; readonly HOST: "host"; readonly FOLDER: "folder"; }; export declare const AGGREGATION_TYPE: { readonly AVG: "Avg"; readonly MAX: "Max"; readonly MIN: "Min"; readonly WORST: "Worst"; }; export declare const METRICS_TYPE: { readonly DEFAULT: "Default"; readonly PVS: "PVS"; readonly GPU: "GPU"; readonly USER_SESSIONS: "UserSessions"; }; export declare const HOST_METRICS: { readonly CPU: "cpu"; }; export declare const DEFAULT_PAGE = 1; export declare const DEFAULT_LIMIT = 20; export declare const MAX_LIMIT = 100000; export declare const PAGINATION_SCHEMA: { type: string; properties: { _page: { type: string; description: string; minimum: number; default: number; }; _limit: { type: string; description: string; minimum: number; maximum: number; default: number; }; }; }; export declare const DATETIME_SCHEMA: { type: string; format: string; description: string; }; export declare const DATE_SCHEMA: { type: string; format: string; description: string; };