export interface MediaListCallback {
    id: string;
    length: number;
    title: string;
    color: string;
    name: string;
    type: number;
    avatar: string;
    cover: string;
}
export declare const mediaListCallback: (message: string) => MediaListCallback[];
