export declare const analysisConfig: { projectId: string; readKey: string; }; export declare const simpleFixture: { query: { analysis_type: string; event_collection: string; timeframe: { start: string; end: string; }; timezone: number; }; result: number; }; export declare const fixture: { query: { analysis_type: string; event_collection: string; timeframe: { start: string; end: string; }; group_by: string[]; interval: string; timezone: number; }; result: { value: { 'product.name': string; result: number; }[]; timeframe: { start: string; end: string; }; }[]; };