import React from 'react'; import type { MarkdownField, WidgetPreviewProps } from '@staticcms/core'; export interface WithShortcodeMdxComponentProps { previewProps: WidgetPreviewProps; } interface ShortcodeMdxComponentProps { shortcode: string; args: string[]; } declare const withShortcodeMdxComponent: ({ previewProps }: WithShortcodeMdxComponentProps) => React.FC; export default withShortcodeMdxComponent;