import { FunctionComponent, ReactNode } from 'react' import { ButtonProps } from './button' export interface GoodsActionIconProps extends Omit { url?: string linkType?: 'navigateTo' | 'reLaunch' | 'redirectTo' text?: string dot?: boolean info?: string icon?: string renderIcon?: ReactNode children?: ReactNode } declare const GoodsActionIcon: FunctionComponent export { GoodsActionIcon }