export declare function changeColor(color: string): void;
export declare function getColor(): string;
export declare const color: import("vue").WritableComputedRef<string>;
/**
 * Initialize the color module and apply the theme to the body of the document
 * @param color The color that our pallette will be based on
 */
export default function (color: string): void;
