///
import { Image, ProductVariant } from '../../types';
interface Params {
galleryImages: Image[];
galleryRef: React.RefObject;
variant?: ProductVariant;
}
export declare function useSwitchToVariantImage({ galleryImages, galleryRef, variant }: Params): void;
export {};