import { USEColorTransform } from './types';
/**
 * 颜色值互转
 * @example
 * ```ts
 * import { useColorTransform } from 'mine-h5-ui'
 *
 * const rgb = useColorTransform('#ff6600', ['hex', 'rgb'])
 * console.log(rgb) // rgb(255, 102, 0)
 * ```
 */
export declare const useColorTransform: <T = string | (string | number)[]>(value: T, [sourceType, targetType]: USEColorTransform.Option["type"]) => T;
