import type { Query, QueryOptions } from '@dhis2/data-engine'; import { QueryRenderInput } from '../../types'; interface QueryInput extends QueryOptions { query: Query; children: (input: QueryRenderInput) => any; } export declare const DataQuery: ({ query, onComplete, onError, variables, lazy, children, }: QueryInput) => any; export {};