import { Logger } from 'homebridge';
export interface NtfyConfig {
    title: string;
    topic: string;
    serverUrl?: string;
}
export declare class NtfyGateway {
    private readonly log;
    private readonly config;
    private serverUrl;
    constructor(log: Logger, config: NtfyConfig);
    send(message: string): Promise<void>;
}
//# sourceMappingURL=ntfyGateway.d.ts.map