/// <reference types="react" />
import { SvgProps } from "../../types";
interface FolderIconProps extends SvgProps {
    filetype?: string;
    fontSize?: number;
    hasIcon?: boolean;
    iconColor?: string;
    isMono?: boolean;
    size?: number;
}
declare const FolderIcon: import("react").NamedExoticComponent<FolderIconProps>;
export default FolderIcon;
