Attempting to use GoogleLogin with hint does not build as types for GsiButtonConfiguration are missing.
I am currently fixing this with as a source type augmentation.
import '@react-oauth/google';
declare module '@react-oauth/google' {
interface GsiButtonConfiguration {
hint?: string;
login_hint?: string;
}
}