import { Emits } from './types'; /** * 点击 hook */ export declare const useImgEvent: (emit: Emits) => { onClick: (e: MouseEvent) => void; onLoad: (e: Event) => void; onError: (e: Event) => void; };