/**
 * A collection of color constants used throughout the application.
 *
 */
declare const colors: {
    white: string;
    black: string;
    blue: string;
    gray: string;
    green: string;
};
export default colors;
