declare type MarkdownStoryProps = { file: string; content: Promise<{ default: string; }>; }; declare const MarkdownStory: ({ file, content }: MarkdownStoryProps) => JSX.Element; export default MarkdownStory;