import { type HTMLStyleProps, type StateProp } from '@innet/dom'; export interface SpaceProps extends HTMLStyleProps { flex?: StateProp; gap?: StateProp; } export declare function Space({ flex, style, gap, ...props }?: SpaceProps): any;