import React, { Component } from 'react'; import type { Colors } from '../types'; import type { Sizes } from './prop_types'; interface CommonSVGProps { _modifierClass?: string; 'aria-describedby'?: string; 'aria-hidden'?: boolean; 'aria-label'?: string; 'aria-labelledby'?: string; children?: React.ReactNode; color?: Colors; id?: string; rotation?: number; size?: Sizes; spinning?: boolean; tight?: boolean; tightViewBox?: string; title?: string; viewBox?: string; } export declare function idSelector(id: string): string; export declare class CommonSVG extends Component { static defaultProps: { size: string; spinning: boolean; title: string; viewBox: string; }; componentDidMount(): void; getCenterPoint(): { x: number; y: number; }; getTransform(): string; render(): React.JSX.Element; } export {};