import React from 'react'; import { StyleDeclarationValue } from 'aphrodite/no-important'; type Props = { icon: React.ReactElement; styles?: StyleDeclarationValue; }; declare function Icon({ icon, styles: customStyles }: Props): JSX.Element; export default Icon;