export interface GalleryItemProps {
    src: string;
    alt: string;
    /** Small muted caption under the square image. */
    caption?: string;
}
/**
 * White rounded tile (`.kwac-gallery-item`, 22px radius, 26px padding) with a
 * square, contained product image and a muted caption. Child of `Gallery`.
 */
export declare function GalleryItem({ src, alt, caption }: GalleryItemProps): import("react").JSX.Element;
