import { ApiService } from '../core/ApiService'; import { LikeService } from "../common/LikeService"; import { ObjectService } from "../object/ObjectService"; export declare class StoryService { private api; private _like; private _object; LIMIT: number; constructor(api: ApiService, _like: LikeService, _object: ObjectService); get({where, limit, order, skip, fields}: { where: any; limit?: number; order?: string; skip?: number; fields?: {}; }): any; getAudit(storyId: any, query?: {}): any; getBaseLink(story: any): any; getBySlug(slug: any, beforeSlug: any): any; post(data: any): any; put(data: any): any; save(data: any): any; del(subjectId: any): any; deny(subjectId: any): any; private changeStatus(id, action); count(where?: any): any; }