import React from 'react'; import { CSS } from '../theme/stitches.config'; import { Justify, AlignItems, Wrap } from '../utils/prop-types'; import { RowVariantsProps } from './row.styles'; interface Props { gap?: number; wrap?: Wrap; justify?: Justify; align?: AlignItems; css?: CSS; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type RowProps = Props & NativeAttrs & RowVariantsProps; declare const _default: React.ComponentType & Omit>; export default _default;