import React from 'react'; import SvgIcon from '@mui/material/SvgIcon'; /** * File extension → icon, reused anywhere a stored file is shown (detail page, * grid cells, mobile lists, ...). Kept here until a central constants module * groups it with the other shared constants (as done with the types). */ export declare const FILE_TYPE_ICONS: Record; export declare const DEFAULT_FILE_ICON: import("@mui/material/OverridableComponent").OverridableComponent> & { muiName: string; }; export interface FileTypeIconProps { /** File name (or URL) whose extension selects the icon. */ name?: string; } /** Renders the small icon matching a stored file's extension. */ export default function FileTypeIcon({ name }: FileTypeIconProps): React.JSX.Element; //# sourceMappingURL=FileTypeIcon.d.ts.map