import * as React from 'react';
import { Icon } from 'iconista/lib/types';
export type IconistaProps = Icon & React.SVGAttributes<any> & {
    colorStroke?: boolean;
    color?: string;
};
export declare const Iconista: React.FC<IconistaProps>;
