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