import { Model } from 'sequelize-typescript';
export declare class ChangeConfiguration extends Model {
    static readonly MODEL_NAME: string;
    stationId: string;
    key: string;
    value?: string | null;
    readonly?: boolean | null;
}
