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

interface JengaSpaceProps extends BaseProps, ContainerStyleProps {
    direction?: 'vertical' | 'horizontal';
}
declare const Space: react.ForwardRefExoticComponent<JengaSpaceProps & react.RefAttributes<unknown>>;

export { JengaSpaceProps, Space };
