import { Checkout } from '../../types'; export interface CheckoutFetchInput { id: string; } export interface CheckoutFetchResponse { node: Checkout; } export declare const CHECKOUT_FETCH: import("graphql").DocumentNode;