/// interface Props { color: string; showAlpha?: boolean; } declare const ColorPreview: ({ color, showAlpha }: Props) => JSX.Element; export default ColorPreview;