import { NewsApiConfig } from '../types/news/NewsApiConfig'; import { Post } from '../types/news/Post'; /** * Fetches a single post by id. * @template TArticle The post shape returned (defaults to Post). * @param {NewsApiConfig} config - The injected service configuration. * @param {string} articleId - The post id. * @returns {Promise} The post. */ export declare const fetchArticleById: (config: NewsApiConfig, articleId: string) => Promise; //# sourceMappingURL=fetchArticleById.d.ts.map