import { IGif } from '@giphy/js-types'; import { h } from 'preact'; type Props = { gif: IGif; className?: string; onClick?: (gif: IGif) => void; }; declare const Attribution: { ({ gif, className, onClick }: Props): h.JSX.Element | null; className: string; }; export default Attribution;