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