import { ImageCategory } from '../enums/image-category.enum';
export declare class ImageDto {
    url: string;
    thumbnail?: string;
    category: ImageCategory;
    type: string;
    width?: number;
    height?: number;
}
