import { GeoLocationDto } from '../../locations/dtos/geo-location.dto';
import { ConnectorType } from '../../locations/enums/connector-type.enum';
import { ConnectorFormat } from '../../locations/enums/connector-format.enum';
import { PowerType } from '../../locations/enums/power-type.enum';
export declare class CdrLocationDto {
    id: string;
    name?: string;
    address: string;
    city: string;
    postalCode?: string;
    state?: string;
    country: string;
    coordinates: GeoLocationDto;
    evseUid: string;
    evseId: string;
    connectorId: string;
    connectorStandard: ConnectorType;
    connectorFormat: ConnectorFormat;
    connectorPowerType: PowerType;
}
