import ApolloClient from "apollo-client"; import BaseList, { BaseListVariables } from "../../../helpers/BaseList"; export declare function makeList(createList: (client: ApolloClient) => BaseList): (variables: TVariables) => { current: Promise> | null | undefined; data: TObject[] | undefined; loading: boolean; next: () => Promise; pageInfo: import("../../../fragments/gqlTypes/PageInfo").PageInfo | undefined; };