import type { AppId } from '../../core'; /** * A hook that can be used within extensions to interface with the OAuth backend. */ export declare const useAppOauth: (appId: AppId, queryParam?: string) => { authState: import("..").AuthState; triggerConnect: () => void; triggerRetry: () => void; credentialsId: string; };