import { ViewStyle, TextStyle } from 'react-native'; export interface GoogleSignInButtonProps { onPress?: (user: any) => void; onError?: (error: any) => void; style?: ViewStyle; textStyle?: TextStyle; disabled?: boolean; title?: string; loadingTitle?: string; showIcon?: boolean; size?: 'small' | 'medium' | 'large'; color?: 'light' | 'dark'; } export declare function GoogleSignInButton({ onPress, onError, style, textStyle, disabled, title, loadingTitle, showIcon, size, color, }: GoogleSignInButtonProps): import("react/jsx-runtime").JSX.Element;