import { type ReactNode } from "react"; interface GalleryCarouselStageProps { id: string; swipeEnabled: boolean; onSwipe: (direction: -1 | 1) => void; children: ReactNode; } /** Keeps horizontal photo gestures separate from page scrolling and lightbox taps. */ export declare function GalleryCarouselStage({ id, swipeEnabled, onSwipe, children }: GalleryCarouselStageProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=GalleryCarouselStage.d.ts.map