import { Align, Gap, Just } from './types.js'; import * as React from 'react'; import Block from './Block'; import Item from './Item'; export interface Props { align: Align; children?: any; className?: string; gap: Gap; just: Just; } declare class Flexy extends React.PureComponent { static defaultProps: { gap: string; }; static Block: typeof Block; static Item: typeof Item; render(): JSX.Element; } export default Flexy;