///
import * as AntIcon from "@ant-design/icons";
import { ViewProps } from "reactjs-view";
import "./icon";
import { IconsNames } from "./iconNames";
interface IconViewProps extends Omit {
name?: IconsNames;
antName?: keyof typeof AntIcon;
size?: "xsmall" | "small" | "medium" | "large" | number;
color?: string | string[];
testID?: string;
}
declare const IconView: ({ name, color, size, testID, antName, ...rest }: IconViewProps) => JSX.Element;
export { IconView };
export type { IconsNames, IconViewProps };
//# sourceMappingURL=index.d.ts.map