import { ChargingStation } from '../Location';
import { ChargingStationSequenceType } from '@citrineos/base';
import { BaseModelWithTenant } from '../BaseModelWithTenant';
export declare class ChargingStationSequence extends BaseModelWithTenant {
    static readonly MODEL_NAME: string;
    stationId: string;
    type: ChargingStationSequenceType;
    value: number;
    station: ChargingStation;
}
