import { HttpWorkflow } from '../core/httpworkflow'; import { DorksManagerImpl } from '../interfaces/manager'; import { Safe } from '../private'; import { KyodoDorksConfig, StartLimit } from '../public'; import { Post } from '../schemas/kyodo/post'; import { BasicResponse } from '../schemas/responses/basic'; export declare class DorksPostManager implements DorksManagerImpl { endpoint: string; config: KyodoDorksConfig; httpWorkflow: HttpWorkflow; constructor(config: KyodoDorksConfig, httpWorkflow: HttpWorkflow); get: (id: Safe) => Promise; create: (title: Safe, content: Safe, cover: Safe, backgroundUrl?: Safe) => Promise; getManyFrom: (startLimit?: StartLimit, userId?: Safe) => Promise; sendComment: (postId: Safe, content: Safe, title?: Safe) => Promise; likeStatus: (postId: Safe) => Promise; } //# sourceMappingURL=postManager.d.ts.map