declare class ProductRelease {
    title: string;
    primaryCategoryName: string;
    url: string;
    image: string;
    releaseDate: string | undefined;
    constructor(title: string, primaryCategoryName: string, url: string, image: string, releaseDate: string | undefined);
}
export default ProductRelease;
