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