import { Panel } from 'yalesyncalarm/dist/Model';
/**
 * KeypadContext class to store the id, type and state of a panel
 */
export declare class KeypadContext {
    id: string;
    type: string;
    state: Panel.State;
    constructor(id: string, type: string, state: Panel.State);
}
/**
 * LoggerContext class to store the last updated date and value of a panel
 */
export declare class LoggerContext {
    lastUpdated: Date;
    lastValue: string;
    constructor(lastUpdated: Date, lastValue: string);
}
