import React from 'react'; import { SwatchRectRenderProps, type SwatchProps } from '@uiw/react-color-swatch'; interface PointProps extends SwatchRectRenderProps { rectProps?: SwatchProps['rectProps']; } export default function Point({ style, title, checked, color, onClick, rectProps }: PointProps): React.JSX.Element; export {};