/**
 * Per-metric streak threshold override for a user.
 */
export interface StreakMetricPreference {
    /** The metric key. */
    key: string;
    /** Minimum metric change in a streak period to count toward the streak. */
    threshold: number;
}
