import * as React from 'react';
import Color from '../core/Color';
type ColorChunkProps = React.PropsWithChildren<{
    /**
     * 颜色的十六进制值，带 `#` 前缀 (4/8 位带 alpha 通道)
     * @example '#000f' ｜ '#000000ff'
     */
    value: string;
}>;
declare function ColorChunk(props: ColorChunkProps): import("react/jsx-runtime").JSX.Element;
export { Color };
export type { ColorChunkProps };
declare const _default: React.MemoExoticComponent<typeof ColorChunk>;
export default _default;
