import { RingChime } from '../api';
import { RingPlatformConfig } from './config';
import { Logging, PlatformAccessory } from 'homebridge';
import { BaseDataAccessory } from './base-data-accessory';
export declare class Chime extends BaseDataAccessory<RingChime> {
    readonly device: RingChime;
    readonly accessory: PlatformAccessory;
    readonly logger: Logging;
    readonly config: RingPlatformConfig;
    constructor(device: RingChime, accessory: PlatformAccessory, logger: Logging, config: RingPlatformConfig);
}
