import type { ChangeConfigurationDto, TenantDto } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
export declare class ChangeConfiguration extends Model implements ChangeConfigurationDto {
    static readonly MODEL_NAME: string;
    stationId: string;
    key: string;
    value?: string | null;
    readonly?: boolean | null;
    tenantId: number;
    tenant?: TenantDto;
    static setDefaultTenant(instance: ChangeConfiguration): void;
    constructor(...args: any[]);
}
