import React from 'react';
export declare type IconSvgOptions = {
    icon: string;
    color?: string;
    size?: string;
    padding?: 'left' | 'right';
    label?: string;
};
export declare type IconSvgProps = {
    options: IconSvgOptions;
};
export declare type SVGStyleProps = {
    color?: string;
    verticalAlign?: string;
    fill?: string;
};
declare const IconSvg: React.FunctionComponent<IconSvgProps>;
export default IconSvg;
