import { type InputColor as OInputColor, type MyColorCfg as OColorCfg } from "../inputHex"; import { type W3CX11 } from "./w3cx11"; import type { ColorPlugin } from "ohcolor"; interface ColorCfg { color: W3CX11; } type MyColorCfg = OColorCfg & ColorCfg; /** * Plugin: support parsing w3cx11 color * @note will install inputHex plugin at the same time */ export declare const inputNamed: ColorPlugin; type InputColor = OInputColor | W3CX11; export type { MyColorCfg, InputColor }; export default inputNamed; export { type W3CX11 } from "./w3cx11";