import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { CheckoutSettings, StringFilterInput } from "../types"; export declare const listCheckoutSettings: (input: ListCheckoutSettingsQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type ListCheckoutSettingsQueryParams = { id?: StringFilterInput | null; includeDeleted?: boolean | null; storefrontId?: StringFilterInput | null; };