import React from 'react';
import type { RenderFunction } from './renderFunction';
import type { IconOptions } from './Icon';
export declare const IconBase: React.ForwardRefExoticComponent<IconBaseOptions & React.RefAttributes<SVGSVGElement>>;
export interface IconBaseOptions extends IconOptions {
    renderPath: RenderFunction;
    height?: string | number | undefined;
    width?: string | number | undefined;
}
