import type Artist from './Artist.js';
interface Shirt {
    type: 'shirt';
    name: string;
    url?: string;
    imageUrl?: {
        primary: string;
        /**
         * @deprecated Use {@link additional} array instead.
         */
        secondary?: string;
        additional?: string[];
    };
    releaseDate?: string;
    artist?: Omit<Artist, 'type'>;
}
export default Shirt;
//# sourceMappingURL=Shirt.d.ts.map