import { Query, QueryOptions } from '../../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 {};