import React from 'react'; import * as SS from 'styled-system'; type StyledImgProps = SS.SizeProps; type FactionImageProps = { isRadiant: boolean; } & Omit, 'src' | 'srcSet' | 'sizes' | 'id' | 'alt'> & StyledImgProps; export declare function FactionImage(props: FactionImageProps): JSX.Element; export {};