import type { ReactElement } from "react"; import React from "react"; interface RowProps { readonly children: ReactElement | ReactElement[]; } export declare function Row({ children }: RowProps): React.JSX.Element; export {};