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