/// <reference types="react" />
import { BaseProps } from '../type';
interface BlocksProps extends BaseProps {
}
export default function Blocks({ visible, width, height, wrapperClass, wrapperStyle, ariaLabel, }: BlocksProps): JSX.Element | null;
export {};
