import { MqttInterface, MqttTopicInterface } from '../interfaces/mqttInterface'; /** * MQTT Repository. */ declare class MqttRepository { /** * Cached Config. * * @protected */ protected config: MqttInterface | undefined; /** * Get MQTT information from the Configuration file. * * @returns Promise */ getConfig(): Promise; /** * Get Topics from the Configuration file. * * @returns Promise */ getConfigTopics(): Promise; } declare const _default: MqttRepository; export default _default;