import { BcfApi } from '../bcf-api'; import { AureliaBcf } from '../aurelia-bcf'; import { BcfTopicInterface } from '../models/index'; export declare class BcfTopicService { private api; private bcf; constructor(api: BcfApi, bcf: AureliaBcf); getTopics(projectId: string): Promise; getTopic(projectId: string, topicId: string): Promise; createTopic(projectId: string, body: BcfTopicInterface): Promise; editTopic(projectId: string, topicId: string, body: BcfTopicInterface): Promise; deleteTopic(projectId: string, topicId: string): Promise; }