import type { ValuesType } from 'utility-types';
/**
 * Types of product images.
 */
export declare const ProductImageType: {
    readonly MODEL: "model";
    readonly BUST: "bust";
};
export type ProductImageType = ValuesType<typeof ProductImageType>;
