import { SVGProps } from 'react'; import { DefaultTheme } from 'styled-components'; interface IconProps extends Omit, 'fill' | 'stroke'> { /** * @default "currentColor" */ fill?: keyof DefaultTheme['colors'] | string; stroke?: keyof DefaultTheme['colors'] | string; } type IconComponent = React.FC; export declare const getAssetIcon: (mime: string | undefined, ext: string | undefined) => IconComponent; export {};