import type { ListBlogQueryParams } from "../../../storefront-api/src/__api/queries/listBlog"; import type { ListBlogCategoryQueryParams } from "../../../storefront-api/src/__api/queries/listBlogCategory"; import type { ListBlogMetadataQueryParams } from "../../../storefront-api/src/__api/queries/listBlogMetadata"; import { APIResponse } from "../../../storefront-api-client/src"; import { IkasBlog, IkasBlogCategory, IkasBlogMetaData } from "../../../storefront-models/src"; export declare function apiListBlog(params: ListBlogQueryParams): Promise>; export declare function apiListBlogMetaData(params: ListBlogMetadataQueryParams): Promise>; export declare function apiListBlogCategory(params: ListBlogCategoryQueryParams): Promise>;