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