import * as React from "react"; import { ViewProps } from "../View"; export interface IconProps extends ViewProps { /** Supply a color by the color prop. The available colors can be found in the Colors section. */ color?: string; /** Define size with the size prop. This uses font sizing to determine the size, so the value is the index on the font size array that you require. */ size?: number | number[]; ariaLabel?: string; } declare class IconBase extends React.PureComponent { static displayName: string; getIconComponent(props: IconProps): any; render(): JSX.Element; } export default IconBase;