import type { ContentKitBlock } from '@gitbook/api'; import type React from 'react'; import type { ContentKitServerElementProps } from './types'; export function ElementBlock( props: React.PropsWithChildren> ) { const { children } = props; return <>{children}; }