/** * Interface for checkout operations */ interface CheckoutOperations { /** * Creates a Shopify checkout URL with pre-filled customer information and cart items. */ createUrl(params: { email: string; items: Array<{ productVariantId: string; quantity: string; }>; address: { firstName: string; lastName: string; address1: string; city: string; zip: string; country: string; province: string; phone: string; }; }): string; } /** * Creates checkout operations for a store instance */ declare function createCheckoutOperations(baseUrl: string): CheckoutOperations; export { type CheckoutOperations, createCheckoutOperations };