import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { CustomerReviewSFPaginationResponse, ListCustomerReviewInput, PaginationInput, StringFilterInput } from "../types"; export declare const listCustomerReviews: (input: ListCustomerReviewsQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type ListCustomerReviewsQueryParams = { hasImage?: boolean | null; id?: StringFilterInput | null; includeDeleted?: boolean | null; input: ListCustomerReviewInput; locale?: string | null; orderId?: string | null; pagination?: PaginationInput | null; productId?: string | null; productIds?: string[] | null; sortWithImagesFirst?: boolean | null; };