///
import React from 'react';
import { ReactNode } from "react";
type Direction = 'horizontal' | 'vertical';
type SpaceProps = {
align?: 'start' | 'end' | 'center';
direction?: Direction;
size?: number;
className?: string;
children: ReactNode;
wrap?: boolean;
fullWidth?: boolean;
};
declare const Space: React.FC;
export { Direction, SpaceProps, Space };