import React from 'react'; import type { IconProps, SpecialIconProps } from './type'; declare const Icon: React.FC; declare const SendIcon: ({ size, style, className, disabled, onClick }: SpecialIconProps) => React.JSX.Element; declare const PauseIcon: ({ size, style, className, disabled, onClick }: SpecialIconProps) => React.JSX.Element; export { SendIcon, PauseIcon }; export type { IconProps, SpecialIconProps }; export default Icon;