import { IGif } from '@giphy/js-types'; import { h } from 'preact'; declare const AttributionOverlay: ({ gif, isHovered, onClick, }: { gif: IGif; isHovered: boolean; onClick?: ((gif: IGif) => void) | undefined; }) => h.JSX.Element | null; export default AttributionOverlay;