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