import type { ChargingStationSequenceTypeEnumType, TenantDto } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
import { type ChargingStation as ChargingStationType } from '../Location/index.js';
export declare class ChargingStationSequence extends Model {
    static readonly MODEL_NAME: string;
    stationId: string;
    type: ChargingStationSequenceTypeEnumType;
    value: number;
    station: ChargingStationType;
    tenantId: number;
    tenant?: TenantDto;
    static setDefaultTenant(instance: ChargingStationSequence): void;
    constructor(...args: any[]);
}
