import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { CreatePaypalOrderResponse, CreateSaleTransactionWithCartInput } from "../types"; export declare const createPaypalOrder: (input: CreatePaypalOrderQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type CreatePaypalOrderQueryParams = { input: CreateSaleTransactionWithCartInput; isPayNow?: boolean | null; };