import { ObjectLiteral } from "@dhealth/contracts"; import { OAuthEntityType } from "../OAuthEntity"; import { BasicRemoteDTO } from "../BasicRemoteDTO"; export declare class StravaActivityDataDTO extends BasicRemoteDTO { readonly type: OAuthEntityType; readonly columns: string[]; name: string; sport: string; startedAt: number; timezone: string; startLocation: number[]; endLocation: number[]; hasTrainerDevice: boolean; elapsedTime: number; movingTime: number; distance: number; elevation: number; kilojoules: number; calories: number; isManual: boolean; sufferScore: number; static createFromDTO(data: ObjectLiteral | any): StravaActivityDataDTO; protected constructor(); }