import React from 'react'; import type { SvgIconProps } from '@sinoui/core/SvgIcon'; export interface Props extends SvgIconProps { onClick?: (event: React.MouseEvent) => void; } export default function ClearIcon(props: Props): JSX.Element;