import { BaseService } from '../services/abstract/baseService'; import { CacheSettings } from '../infrastructure/api/types'; import { Clip, ClipsResponse } from '../row/components/list/models/clip'; declare class ClipsApiService extends BaseService { static sharedInstance: ClipsApiService; protected logTag: string; private collectionsCache_; private clipsCache_; loadClips(collection: string, cacheSettings?: CacheSettings): Promise; loadClip(clipId: string, cacheSettings?: CacheSettings): Promise; } declare const _default: ClipsApiService; export default _default;