import { EmbedElement, EmbedStrategy } from '../common'; export declare type TwitterEmbedType = 'tweet'; export declare type TwitterEmbedElementData = { embedType: TwitterEmbedType; account: string; hash?: string; }; export declare type TwitterEmbedElement = EmbedElement & TwitterEmbedElementData; export declare type TwitterEmbedStrategy = EmbedStrategy; export declare function getTwitterTweetDataFromUrl(url: string): TwitterEmbedElementData | undefined; export declare function getTwitterTweetDataFromBlockquote(embedCode: string): TwitterEmbedElementData | undefined; export declare const TwitterEmbedStrategy: TwitterEmbedStrategy;