import { CSSProperties } from "react"; import { FileType } from "../../../../Utils/constants"; interface Props { type: FileType; className?: string; style?: CSSProperties; onClick?: (e: any) => void; } declare function FileIcon({ type, className, onClick, style }: Props): JSX.Element; export default FileIcon;