import type { AnyClient } from "@gadgetinc/core"; import type { Context } from "react"; export type GadgetShopifyUIExtensionContextValue = { /** Whether or not the api client is ready to make requests to with Shopify session token authentication */ ready: boolean; /** An instance of your Gadget app's api client, which has been set up to use Shopify session token authentication */ api: Client; }; export declare const GadgetShopifyUIExtensionContext: Context>; export declare const useGadget: () => GadgetShopifyUIExtensionContextValue;