import * as React from 'react'; import { FunctionComponent, ReactNode } from 'react'; declare type PaletteColor = 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'error'; declare type IconColor = PaletteColor | 'inherit' | 'default'; declare type IconSize = 'small' | 'medium' | 'large'; declare type Props = { icon: React.ReactNode; color?: IconColor; size?: IconSize; children?: ReactNode; }; export declare const AnalyticalBox: FunctionComponent; export {};