export default createLiveTeasers; declare function createLiveTeasers({ Link, CommentLink, DiscussionLink, t, withFeedData, withDiscussionsData, withMyMagazineData, ActionBar, showMyMagazine }: { Link?: ({ children }: { children: any; }) => any; CommentLink?: ({ children }: { children: any; }) => any; DiscussionLink?: ({ children }: { children: any; }) => any; t: any; withFeedData?: (Component: any) => (props: any) => JSX.Element; withDiscussionsData?: (Component: any) => (props: any) => JSX.Element; withMyMagazineData?: (Component: any) => (props: any) => JSX.Element; ActionBar: any; showMyMagazine?: boolean; }): ({ matchMdast: (node: any) => boolean; props: (node: any, index: any, parent: any) => any; component: (props: any) => JSX.Element; isVoid: boolean; editorModule: string; editorOptions: { type: string; insertButtonText: string; insertId: string; form: ({ key: string; note?: undefined; ref?: undefined; } | { key: string; note: string; ref?: undefined; } | { key: string; ref: string; note: string; })[]; }; } | { matchMdast: (node: any) => boolean; props: (node: any) => any; component: ({ attributes, data, url, label }: { attributes: any; data: any; url: any; label: any; }) => JSX.Element; isVoid: boolean; editorModule: string; editorOptions: { type: string; insertButtonText: string; insertId: string; form?: undefined; }; })[];