import { FunctionComponent } from "react";
export interface IconBaseProps {
    size?: string;
    viewBoxSize?: string;
    className?: string;
    color?: string;
}
declare const IconBase: FunctionComponent<IconBaseProps>;
export default IconBase;
