import { GlideRecord } from "../types/GlideRecord"; export declare class ScopedMbPlusTopicDao { addShardTopic( namespace?: string, name?: string, shardID?: string, partition?: number, type?: string, active?: boolean ): string; addTopic( namespace?: string, name?: string, partition?: number, type?: string, active?: boolean ): string; constructor(); deleteTopic(name?: string): boolean; getTopic(name?: string): GlideRecord; setTopicActive(name?: string, active?: boolean): boolean; setTopicPartition(name?: string, partition?: number): boolean; }