import type { Artist } from './Artist';
export type RotorData = {
    title: string;
    description: string;
    imageUrl: string;
    artists: Array<Artist>;
};
