import { default as React } from 'react'; type Props = { children?: string; color?: string; linkColor?: string; enableMarkdown?: boolean; }; export declare const Content: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute, HTMLDivElement>, { color?: string; linkColor?: string; }>> & string; export default function TextContent({ linkColor, color, enableMarkdown, children }: Props): import("react/jsx-runtime").JSX.Element; export {};