export default createDynamicComponent; declare function createDynamicComponent({ t, dynamicComponentRequire, dynamicComponentIdentifiers, insertButtonText, type }: { t: any; dynamicComponentRequire: any; dynamicComponentIdentifiers: any; insertButtonText: any; type: any; }): { matchMdast: any; component: ({ showException, raw, size, attributes, ...props }: { [x: string]: any; showException: any; raw?: boolean; size: any; attributes: any; }) => JSX.Element; props: (node: any) => { raw: any; size: any; src: any; identifier: any; html: any; props: any; loader: any; require: any; identifiers: any; }; editorModule: string; editorOptions: { type: any; insertTypes: string[]; insertButtonText: any; }; isVoid: boolean; };