import Exceptional from "../util/Exceptional"; export default class Dynamic { private velocity; static MINIMUM_VELOCITY: number; static MAXIMUM_VELOCITY: number; static size: number; private static _values; static PIANISSISSIMO: Dynamic; static PIANISSIMO: Dynamic; static PIANO: Dynamic; static MEZZO_PIANO: Dynamic; static MEZZO_FORTE: Dynamic; static FORTE: Dynamic; static FORTISSIMO: Dynamic; static FORTISSISSIMO: Dynamic; private constructor(); static values(): Dynamic[]; ordinal(): number; static valueOf(dynamicString: string): Dynamic; crescendo(amount: number): Dynamic; diminuendo(amount: number): Dynamic; static fromString(dynamicString: string): Exceptional; toString(): string; getVelocity(): number; }