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