import * as react from 'react';
import { AllBaseProps, ContainerStyleProps } from 'tastycss';

interface JengaBlockProps extends Omit<AllBaseProps, keyof ContainerStyleProps | 'as'>, ContainerStyleProps {
}
declare const Block: react.ForwardRefExoticComponent<JengaBlockProps & react.RefAttributes<unknown>>;

export { Block, JengaBlockProps };
