export declare const Color: { readonly red: "red"; readonly green: "green"; readonly blue: "blue"; }; export type Color = (typeof Color)[keyof typeof Color];