import { _CountryFilterKeys } from "../../../shared/graphql/graphql"; type Props = { skip?: boolean; first?: number; query?: string | null; filterKeys?: _CountryFilterKeys | null; }; export declare const useCountries: (props?: Props) => { countries: { __typename: "_Country"; _id?: string | null; name?: string | null; flag?: string | null; }[] | undefined; pageInfo: { __typename: "PageInfo"; endCursor?: string | null; hasNextPage?: boolean | null; hasPreviousPage?: boolean | null; startCursor?: string | null; } | null | undefined; isLoadingCountry: boolean; error: import("@apollo/client").ErrorLike | undefined; fetchMoreCountries: () => void; }; export {};