import { type ButtonHTMLAttributes } from 'react'; export type GalleryButtonProps = ButtonHTMLAttributes & { imageSrc?: string; }; export declare const GalleryButton: ({ children, className, imageSrc, style, type, "aria-label": ariaLabel, ...props }: GalleryButtonProps) => import("react/jsx-runtime").JSX.Element;