import { ServiceType } from '@homebridge/hap-client';
import { SmartHomeV1ExecuteRequestCommands, SmartHomeV1ExecuteResponseCommands } from 'actions-on-google';
import { ghToHap, ghToHap_t } from './ghToHapTypes';
export declare class SecuritySystem extends ghToHap implements ghToHap_t {
    twoFactorRequired: boolean;
    returnStateOnExecute: boolean;
    sync(service: ServiceType): any;
    query(service: ServiceType): any;
    execute(service: ServiceType, command: SmartHomeV1ExecuteRequestCommands): Promise<SmartHomeV1ExecuteResponseCommands>;
    is2faRequired(command: any): boolean;
}
