import * as React from "react"; interface Props { hasCaption: boolean; onClick: () => void; } export default function ExploreImageButton({ hasCaption, onClick }: Props): React.JSX.Element; export {};