/** * Get video description from html * * @param {string} html * @return {string} */ export declare const getVideoDescription: (html: string) => string; /** * Get video media (extra information) from html * * @param {string} body * @return {Object} */ export declare const getVideoMedia: (body: any) => any; export declare const getAuthor: (body: string) => { id?: undefined; name?: undefined; avatar?: undefined; verified?: undefined; user?: undefined; channel_url?: undefined; user_url?: undefined; } | { id: any; name: any; avatar: any; verified: boolean; user: any; channel_url: string; user_url: string; }; /** * Get video published at from html. * * @param {string} body * @return {string} */ export declare const getPublished: (body: string) => number; /** * Get video published at from html. * Credits to https://github.com/paixaop. * * @param {string} body * @return {Array.} */ export declare const getRelatedVideos: (body: string) => any[]; export declare const getLikes: (body: string) => number; export declare const getDislikes: (body: string) => number;