import { ApolloClient } from "@apollo/client"; export interface ListQueryType { allPlanets: { __typename?: "PlanetsConnection"; pageInfo: { hasNextPage: boolean; endCursor: string; }; edges: Array<{ __typename?: "PlanetsEdge"; node: { __typename?: "Planet"; name: "string"; id: "string"; }; cursor: string; }>; totalCount?: number; }; } export declare const LIST_QUERY: import("@apollo/client").DocumentNode; export declare const apolloClient: ApolloClient; interface LoadingState { loadingStatus: string; loading: boolean; } export declare function getLoadingState(loadingInitialContent: boolean, loadingRefresh: boolean, loadingNextPage: boolean): LoadingState; export declare const propsList: ({ id: number; title: string; caption: string; value: string; url?: undefined; } | { id: number; title: string; caption: string; url: string; value: string; })[]; export declare const subscriptionPropsList: { id: number; title: string; caption: string; value: string; }[]; export declare const returnValues: { id: number; title: string; caption: string; value: string; }[]; export {};