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