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