import type Artist from './Artist.js';
interface Shirt {
    type: 'shirt';
    name: string;
    url?: string;
    imageUrl?: {
        primary: string;
        secondary?: string;
    };
    releaseDate?: string;
    artist?: Omit<Artist, 'type'>;
}
export default Shirt;
//# sourceMappingURL=Shirt.d.ts.map