import type { AudiusSdk } from './sdk'; import type { SdkConfig } from './sdk/types'; export * from './sdk'; /** * Creates the Audius SDK configured for React Native / Expo. * * Defaults: * - `tokenStore`: AsyncStorage-backed (tokens survive app restarts) * - `openUrl`: `expo-web-browser` openAuthSessionAsync, which opens an * isolated ASWebAuthenticationSession (iOS) / Chrome Custom Tab (Android). * This bypasses OS universal-link interception so the Audius native app * never intercepts the OAuth consent page, and the redirect URL is returned * directly to the SDK without relying on a Linking deep-link event. */ export declare const sdk: (config: SdkConfig) => AudiusSdk;