import React from 'react';
import type { SVGProps } from "react";
export declare const user1Data: {
    '32x32_4': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
    '22x22_4': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
    '16x16_4': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
    '14x14_4': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
    '12x12_4': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
    '10x10_4': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
};
export interface User1Props extends SVGProps<SVGSVGElement> {
    /**
     * Icon variant to use.
     **/
    variant?: '32x32_4' | '22x22_4' | '16x16_4' | '14x14_4' | '12x12_4' | '10x10_4';
}
export declare const User1: React.FC<User1Props>;
