import type { ReactNode } from 'react'; import type { StyleXStyles } from '@stylexjs/stylex'; type StyleXStylesType = StyleXStyles<{ width?: string; display?: string; gap?: string; marginBottom?: string; }>; export interface ISpacedFlex { children: ReactNode; direction?: 'horizontal' | 'vertical'; width?: 'fitContent' | 'full'; style?: StyleXStylesType; } export {};