import type { FC, ReactNode, MouseEvent } from 'react'; import { NativeProps } from '../../utils'; export type SpaceProps = { direction?: 'horizontal' | 'vertical'; align?: 'start' | 'end' | 'center' | 'baseline'; justify?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly' | 'stretch'; wrap?: boolean; block?: boolean; children?: ReactNode; onClick?: (event: MouseEvent) => void; } & NativeProps<'--gap' | '--gap-vertical' | '--gap-horizontal'>; declare const Space: FC; export default Space;