import { Validatable } from '../validatable.js';
/**
 *
 */
export declare class SecuritySystemConfiguration implements Validatable {
    defaultState: string;
    hasNightMode: boolean;
    awayArmingDelay: number;
    private errorFields;
    readonly fieldNames: { [P in keyof this]?: P | undefined; };
    isValid(prefix: string): [boolean, string[]];
}
