import { CacheSettings } from '../infrastructure/api/types'; import { BaseService } from '../services/abstract/baseService'; import { StoriesResponse, Story } from './models/story'; declare class StoriesApiService extends BaseService { static sharedInstance: StoriesApiService; protected logTag: string; private categoriesCache_; private storiesCache_; loadStories(categories?: string[], cacheSettings?: CacheSettings): Promise; loadStoryByExternalId(externalId: string, cacheSettings?: CacheSettings): Promise; loadStoryById(storyId: string, cacheSettings?: CacheSettings): Promise; loadStoryByPageId(pageId: string, cacheSettings?: CacheSettings): Promise; } declare const _default: StoriesApiService; export default _default;