import React from 'react'; import { ObjectType } from '../../common/type'; import { BaseImageProps } from './use-image.type'; declare const useImage: (props?: BaseImageProps) => { src: string | undefined; alt: string | undefined; href: string | undefined; status: number; fetchImage: () => void; getRootProps: (externalProps?: TOther) => { [x: string]: (event: any) => void; } & TOther & { ref: React.RefObject; onClick: (event: React.MouseEvent) => void; }; getImageProps: (externalProps?: TOther_1) => { style: React.CSSProperties; } & { [x: string]: (event: any) => void; } & TOther_1 & { alt: string | undefined; draggable: boolean; }; getImageDivProps: (externalProps?: TOther_2) => { [x: string]: (event: any) => void; } & TOther_2; }; export default useImage; //# sourceMappingURL=use-image.d.ts.map