import { Component as OmiComponent } from 'omi'; import type { IconComponentProps } from './types'; declare global { namespace JSX { interface IntrinsicElements { ['o-icon']: Omi.Props & Partial; } } } export default class Icon extends OmiComponent { static propTypes: { spin: BooleanConstructor; rotate: NumberConstructor; viewBox: StringConstructor; ariaLabel: StringConstructor; }; static inheritAttrs: boolean; static displayName: string; static css: string; render(props: Omi.OmiProps): JSX.Element; }