import { FC } from 'react'; import { ISettings, IProduct } from '../../types'; interface PackshotProps { products: IProduct[]; shape: ISettings['thumbnail_shape']; cornerType: ISettings['thumbnail_corners']; heightPercentage?: number; hidden?: boolean; onContainerClick?: () => void; } export declare const getHeightPercentage: (shape: ISettings['thumbnail_shape'], isMobile: boolean) => number; export declare const Packshot: FC; export default Packshot;