import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { StorefrontOrder } from "../types"; export declare const getCustomerOrders: (input: GetCustomerOrdersQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type GetCustomerOrdersQueryParams = { orderId?: string | null; };