import { BaseService } from '../infrastructure'; import { RequestOptions } from '../infrastructure/RequestHelper'; declare class Wikis extends BaseService { all(projectId: ProjectId, options: RequestOptions): Promise; create(projectId: ProjectId, options: RequestOptions): Promise; edit(projectId: ProjectId, slug: string, options: RequestOptions): Promise; show(projectId: ProjectId, slug: string): Promise; remove(projectId: ProjectId, slug: string): Promise; } export default Wikis;