export interface GraphQLRequestOptions { query: string; variables?: Record; } /** * Makes authenticated GraphQL requests to Shopify Admin API */ export declare class ShopifyApiClient { private storeUrl; private accessToken; private apiVersion; constructor(storeUrl: string, accessToken: string, apiVersion?: string); request(options: GraphQLRequestOptions): Promise; } //# sourceMappingURL=api-client.d.ts.map