import { StorefrontApiClient, StorefrontApiResponse } from "./storefront-api-client"; import type { GetCollectionProductsQuery } from "./types/storefront.generated"; import type { CountryCode, LanguageCode } from "./types/storefront.types"; export type LoadCollectionProductsResponse = StorefrontApiResponse; export interface LoadCollectionProductsArgs { handle: string; first: number; after?: string | null; country: CountryCode; language: LanguageCode; } export declare const loadCollectionProducts: (client: StorefrontApiClient, { handle, first, after, country, language }: LoadCollectionProductsArgs) => Promise<{ data: GetCollectionProductsQuery | undefined; errors: import("@shopify/graphql-client").ResponseErrors | null; }>;