/// interface Props { children: any; reverse?: boolean; } export default function Row({ children, reverse }: Props): JSX.Element; export {};