import { ButtonColor } from './Enumerations';
export declare namespace ButtonColors {
    function getAllColors(): ButtonColor[];
    function getRandomColorName(): ButtonColor;
    function getRandomColorNames(count?: number): string[];
    function getUniqueRandomColors(count?: number, excludedColors?: ButtonColor[]): ButtonColor[];
    function getRandomColors(count?: number, excludedColors?: ButtonColor[]): ButtonColor[];
    function getColorName(value: string): string;
    function getTranslation(color: ButtonColor): string;
}
