import Color from '../utils/color'; type CommonColorProps = { modelValue?: string | null; showAlpha: boolean; colorFormat?: string; }; type CommonColorEmits = (event: 'update:modelValue', ...args: any[]) => void; export declare const useCommonColor:

(props: P, emit: E) => { color: Color; }; export {};