interface FileIconProps {
    fileName: string | undefined;
    getFileIcon?: ((fileName: string) => React.ReactNode) | undefined;
    fileIcon: React.ReactNode | undefined;
    className?: string;
    style?: React.CSSProperties;
}
export declare function FileIcon({ fileIcon, fileName, getFileIcon, className, style }: FileIconProps): import("react/jsx-runtime").JSX.Element | null;
export {};
