import * as React from 'react'; import './IdentityProviderLink.css'; interface Props { backgroundColor: string; children: React.ReactNode; className?: string; iconPath: string; name: string; onClick?: () => void; small?: boolean; url: string | undefined; } export default function IdentityProviderLink({ backgroundColor, children, className, iconPath, name, onClick, small, url, }: Props): JSX.Element; export {};