import { ReactNode } from 'react'; import type { StyleXStyles } from '@stylexjs/stylex'; type StyleXStylesType = StyleXStyles<{ width?: string; display?: string; gap?: string; gridTemplateColumns?: string; marginBottom?: string; }>; export type ISpacedInputGrid = { children: ReactNode; style?: StyleXStylesType; }; export {};