import type { CSS } from "../theme/stitches.config"; import React from "react"; 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; children?: React.ReactNode; } declare type NativeAttrs = Omit, keyof Props>; export declare type RowProps = Props & NativeAttrs & RowVariantsProps; declare const _default: React.ComponentType & Omit, "wrap" | "gap" | "justify" | "align">>; export default _default;