import { CSSProperties } from 'react';
export interface ModelIconProps {
    className?: string;
    model?: string;
    shape?: 'circle' | 'square';
    size?: number;
    style?: CSSProperties;
    type?: 'avatar' | 'mono' | 'color' | 'combine' | 'combine-color';
}
declare const ModelIcon: import("react").NamedExoticComponent<ModelIconProps>;
export default ModelIcon;
