/** Dependencies */
import { ConditionBlock } from "@tripetto/builder";
import { TScoreModes } from "../../runner/conditions/score";
export declare class ScoreCondition extends ConditionBlock {
    readonly allowMarkdown = true;
    mode: TScoreModes;
    value?: number | string;
    to?: number | string;
    get label(): string;
    get name(): string;
    get title(): string | undefined;
    private parse;
    defineEditor(): void;
}
