import { Theme, Size, Tokens, Profile } from './types'; import { Web3Provider } from '@ethersproject/providers'; declare global { interface Window { ethereum?: any; } } export declare function SignInWithLens({ provider, theme, size, title, onSignIn, onError, containerStyle, textStyle, icon, iconBackgroundColor, iconForegroundColor }: { provider?: Web3Provider; theme?: Theme; size?: Size; title?: string; onSignIn: (tokens: Tokens, profile: Profile) => void; onError?: (error: any) => void; containerStyle?: any; textStyle?: any; icon?: any; iconBackgroundColor?: string; iconForegroundColor?: string; }): import("react/jsx-runtime").JSX.Element;