import React from 'react'; interface GoogleButtonProps { url?: string; clientId: string; clientSecret: string; redirectUri: string; authorizationUrl?: string; scope?: string[]; width?: number; height?: number; className?: string; style?: React.CSSProperties; disabled?: boolean; children: React.ReactNode; callback: (error: Error | null, result: any | null) => void; } export declare const GoogleOauth2: React.FC; export {};