import { FunctionComponent } from 'react';
import { Props as SVGProps } from 'react-inlinesvg';
export type SvgPros = SVGProps & {
    alt?: string;
    height?: number;
    width?: number;
    className?: string;
    onClick?: (e: any) => void;
};
declare const Index: FunctionComponent<SvgPros>;
export default Index;
