import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { City, DateFilterInput, StringFilterInput } from "../types"; export declare const listCity: (input: ListCityQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type ListCityQueryParams = { countryId?: StringFilterInput | null; id?: StringFilterInput | null; includeDeleted?: boolean | null; search?: string | null; stateId: StringFilterInput; updatedAt?: DateFilterInput | null; };