import { BcfApi } from '../bcf-api'; import { AureliaBcf } from '../aurelia-bcf'; import { BcfViewpointInterface } from '../models/index'; export declare class BcfViewpointService { private api; private bcf; constructor(api: BcfApi, bcf: AureliaBcf); getViewpoints(projectId: string, topicId: string): Promise; getViewpoint(projectId: string, topicId: string, viewpointId: string): Promise; createViewpoint(projectId: string, topicId: string, body: BcfViewpointInterface): Promise; editViewpoint(projectId: string, topicId: string, viewpointId: string, body: BcfViewpointInterface): Promise; deleteViewpoint(projectId: string, topicId: string, viewpointId: string): Promise; }