import type { QueryConfigProps } from '../types';
export declare const createQueryConfig: (startDate: string | undefined, endDate: string | undefined, options: Partial<QueryConfigProps>, filters?: {
    [key: string]: string | string[] | null;
}) => QueryConfigProps;
/**
 * Helper function to get nested object value by path
 */
export declare const getNestedValue: (obj: any, path: string) => any;
