import * as React from "react"; interface ISocialButtonProps { text?: string; shadowColor?: string; backgroundColor?: string; width?: number | string; height?: number | string; component?: React.ReactNode; loginButtonTextStyle?: any; isSpinner?: boolean; spinnerSize?: number; spinnerType?: string; spinnerColor?: string; onPress: () => void; } declare const SocialButton: (props: ISocialButtonProps) => JSX.Element; export default SocialButton;