import type { Ref } from 'vue'; export interface ComponentColorProps { componentName: string; currentColor: Ref; } export declare function useComponentColor(props: ComponentColorProps): { color: import("vue").ComputedRef; };