import { EmbedElement, EmbedStrategy } from '../common'; export declare type InstagramEmbedElementData = { url: string; }; export declare type InstagramEmbedElement = EmbedElement & InstagramEmbedElementData; export declare type InstagramEmbedStrategy = EmbedStrategy; export declare function getInstagramUrlFromUrl(url: string): string | undefined; export declare function getInstagramUrlFromBlockquote(embedCode: string): string | undefined; export declare const InstagramEmbedStrategy: InstagramEmbedStrategy;