import 'react'

declare module 'react' {
    interface HTMLAttributes<T> {
        tip?: string
        tip2?: string
    }

    interface ButtonHTMLAttributes<T> {
        tip?: string
        tip2?: string
    }
}


