import * as React from 'react'; export type BaseProps = { children?: any; tooltip?: string; tooltipId?: string; }; export interface IconProps extends Omit { label?: string; className?: string; color?: string; size?: string; viewBox?: string; } /** * Retrieves the size of the icon. * @param size - Original size which was passed to the icon. * @returns Numeric value indicating the size of the icon. */ export declare const getSize: (size: string) => string; export declare const formatSvgString: (text: string, color: string) => string; export declare const SystemIcon: React.FunctionComponent; export declare const ContentIcon: React.FunctionComponent; export * as ContentIcons from './contenticons'; export * as SystemIcons from './systemicons';