// @ts-nocheck import { HTMLAttributes, Component, StyleHTMLAttributes } from 'react'; export type Range = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; export interface ItemProps extends HTMLAttributes { gap?: number; col: Range; marginBottom?: number; stretch?: boolean; as?: string | Component; className?: string; style?: StyleHTMLAttributes; } export interface FlexProps extends HTMLAttributes { gap?: number; align?: 'flex-start' | 'flex-end' | 'center' | 'baseline' | 'stretch'; col?: Range; className?: string; style?: StyleHTMLAttributes; as?: string | Component; }