import { ApolloError } from "apollo-client"; import * as React from "react"; import { ITableQueryApi } from "./TableQueryContext"; export declare const parseIdFromIri: (iri: string) => string | null; export interface IDefaultVariables { } interface IProps { api: ITableQueryApi; loading: boolean; error?: ApolloError; children: React.ReactNode; } export declare function TableQuery(props: IProps): JSX.Element; export {};