/// import { BasePropsType, IconType } from '../_internal'; export interface TipsPropsType extends BasePropsType { content: string; opText?: string; icon?: IconType | React.ReactNode; show?: boolean; offset?: undefined | 'top' | 'top-start' | 'top-end' | 'right' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left'; className?: string; showClose?: boolean; onClosePress?: (e?: React.SyntheticEvent) => void; onButtonPress?: (e?: React.SyntheticEvent) => void; }