import { ContentSearchResponse, ContentSearchServiceProps } from "../models/content"; export interface ArticleResponse { l: string; u: string; t: string; } export declare const Content: { search: ({ storeID, uuid, query, cursor, cdn, channel }: ContentSearchServiceProps) => Promise; articles: ({ storeID, uuid, query, cursor, cdn, channel }: ContentSearchServiceProps) => Promise; };