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