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