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