export interface Music {
    url: string;
    link: string;
    duration: number;
    title: string;
    singer: string;
    owner: string;
    pic: string;
}
export declare const music: (message: string) => {
    url: string;
    link: string;
    duration: number;
    title: string;
    singer: string;
    owner: string;
    pic: string;
};
