import type { ReactNode } from 'react'; declare type ContentProps = { color?: string; children: ReactNode; }; declare const Content: ({ color, children }: ContentProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default Content;