import type { OneTapOptions } from "."; export default function useGoogleAPI({ options, setToken, token, }: { options: OneTapOptions; setToken: (token: string | null) => void; token: string | null; }): { reauthenticate: () => void; signOut: () => void; };