export interface FacebookResponse {
    url: string;
    duration_ms: number;
    sd: string;
    hd: string;
    title: string;
    thumbnail: string;
}
export declare function getFbVideoInfo(videoUrl: string, cookie?: string, useragent?: string): Promise<FacebookResponse>;
