import React from "react";
import { IconColor } from "@firecms/ui";
export declare function getIcon(iconKey?: string, className?: string, color?: IconColor): React.ReactElement | undefined;
export type IconViewProps = {
    path: string;
    name: string;
    singularName?: string;
    group?: string;
    icon?: string;
};
export declare const IconForView: React.NamedExoticComponent<{
    collectionOrView?: IconViewProps;
    color?: IconColor;
    className?: string;
    size?: "smallest" | "small" | "medium" | "large" | number;
}>;
