import React from 'react'; import { ViewStyle } from 'react-native'; interface GoogleButtonProps { onPress: () => void; style?: ViewStyle; disabled?: boolean; } declare const GoogleButton: React.FC; export { GoogleButton }; export default GoogleButton; //# sourceMappingURL=GoogleButton.d.ts.map