import * as React from "react";
interface IProps extends React.SVGProps<SVGSVGElement> {
    title: string;
}
declare function SvgLatin({ title, ...props }: IProps): JSX.Element;
export default SvgLatin;
