import React, { ReactNode } from "react"; export default function Row(props: { isStandalone: boolean | undefined; align?: string; children: ReactNode; }): React.JSX.Element;