import React from 'react';
export type IconProps = {
    figure?: string;
    paddingLeft?: number;
    paddingRight?: number;
    color?: string | false;
};
export declare function Icon({ children, icon, }: {
    readonly children?: React.ReactNode;
    readonly icon: IconProps;
}): React.ReactNode;
