import { type StudioImageSource } from "./StudioImage"; interface GalleryThumbnailRailProps { images: { src: StudioImageSource; alt?: string; }[]; index: number; onSelect: (index: number) => void; label: string; stageId: string; } /** Inline navigation; scroll only this rail so selection never moves the page. */ export declare function GalleryThumbnailRail({ images, index, onSelect, label, stageId, }: GalleryThumbnailRailProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=GalleryThumbnailRail.d.ts.map