/** * The different color modes supported by the animation system. * @enum */ export declare const ColorModeValues: { /** The color is a given RGB value. */ readonly rgb: number; /** The color is determined based on the die current face up. */ readonly face: number; /** The colors is randomly chosen. */ readonly random: number; }; /** * The names for the "enum" type {@link ColorModeValues}. */ export type ColorMode = keyof typeof ColorModeValues; //# sourceMappingURL=ColorMode.d.ts.map