import React from 'react';
import type { SVGProps } from "react";
export declare const network2Data: {
    '32x32_4': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
    '16x16_4': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
};
export interface Network2Props extends SVGProps<SVGSVGElement> {
    /**
     * Icon variant to use.
     **/
    variant?: '32x32_4' | '16x16_4';
}
export declare const Network2: React.FC<Network2Props>;
