import { DataString } from './data.string';
export declare const TrainingStressScoreMethod: {
    readonly POWER: "POWER";
    readonly HR: "HR";
    readonly PACE: "PACE";
    readonly SWIM_PACE: "SWIM_PACE";
    readonly MET: "MET";
    readonly IMPORTED: "IMPORTED";
};
export type TrainingStressScoreMethodType = (typeof TrainingStressScoreMethod)[keyof typeof TrainingStressScoreMethod];
export declare class DataTrainingStressScoreMethod extends DataString {
    static type: string;
    static unit: string;
}
