import { StorefrontApiClient, StorefrontApiResponse } from "./storefront-api-client"; import type { GetProductIdByHandleQuery } from "./types/storefront.generated"; export type LoadProductIdResponse = StorefrontApiResponse; export type { GetProductIdByHandleQueryVariables } from "./types/storefront.generated"; export interface LoadProductIdArgs { productHandle?: string; } export declare const loadProductId: (client: StorefrontApiClient, { productHandle }: LoadProductIdArgs) => Promise<{ data: GetProductIdByHandleQuery | undefined; errors: import("@shopify/graphql-client").ResponseErrors | null; }>;