import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { BlogPaginationResponse, DateFilterInput, PaginationInput, StringFilterInput } from "../types"; export declare const listBlog: (input: ListBlogQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type ListBlogQueryParams = { categoryId?: StringFilterInput | null; id?: StringFilterInput | null; includeDeleted?: boolean | null; locale?: StringFilterInput | null; pagination?: PaginationInput | null; search?: string | null; storefrontId?: StringFilterInput | null; tagId?: StringFilterInput | null; updatedAt?: DateFilterInput | null; };