import React from 'react';
import { Variant } from '@material-ui/core/styles/createTypography';
interface SingleProps {
    children?: React.ReactNode;
    fontSize: number;
    fontWeight: number | string | undefined;
    lineHeight: number | string | undefined;
    variant: Variant;
}
declare const Row: (props: SingleProps) => JSX.Element;
export default Row;
