export interface NotificationsProps {
    songId: string;
    title?: string;
    artist?: string;
    album?: string;
    artwork?: {
        src: string;
        sizes: string;
    }[];
}
export declare function Notifications({ songId, title, album, artist, artwork }: NotificationsProps): null;
