import React from "react"; type RowProps = React.HTMLAttributes & { wrap?: boolean; }; export default function Row({ wrap, ...props }: RowProps): React.JSX.Element; export {};