import { Model } from 'sequelize-typescript';
import { IdToken } from './IdToken';
export declare class IdTokenInfo extends Model {
    static readonly MODEL_NAME: string;
    status: string;
    cacheExpiryDateTime?: string | null;
    chargingPriority?: number | null;
    language1?: string | null;
    evseId?: [number, ...number[]] | null;
    groupIdTokenId?: number | null;
    groupIdToken?: IdToken;
    language2?: string | null;
    personalMessage?: any | null;
    customData?: any | null;
}
