import { h } from 'preact'; type Props = { onClick: (e: Event) => void; }; declare const FetchError: ({ onClick }: Props) => h.JSX.Element; export default FetchError;