import React from 'react';
import type { SVGProps } from "react";
export declare const msDosData: {
    '16x16_32': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
    '24x24_32': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
    '32x32_32': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
    '48x48_32': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
    '128x128_32': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
};
export interface MsDosProps extends SVGProps<SVGSVGElement> {
    /**
     * Icon variant to use.
     **/
    variant?: '16x16_32' | '24x24_32' | '32x32_32' | '48x48_32' | '128x128_32';
}
export declare const MsDos: React.FC<MsDosProps>;
