import { ForwardRefExoticComponent } from 'react'; import { BlockProps, TypeMark } from './types'; type IBlock = ForwardRefExoticComponent & TypeMark; declare const RefBlock: IBlock; export default RefBlock;