import { CSSProperties } from 'react'; import { VuerProps } from '../../vuer'; type MarkdownProps = VuerProps<{ children: string | string[]; style?: CSSProperties; }>; export declare function Markdown({ _key: key, children, style, ...props }: MarkdownProps): import("react/jsx-runtime").JSX.Element; export {};