export { default as ApiConfig } from './ApiConfig'; export { default as ApiScope } from './ApiScope'; export { default as RepeatMode } from './RepeatMode'; export { default as PlayerState } from './PlayerState'; export { default as PlayerContext } from './PlayerContext'; export { default as Track } from './Track'; export { default as Artist } from './Artist'; export { default as Album } from './Album'; export { default as ContentType } from './ContentType'; export { default as ContentItem } from './ContentItem'; export { default as CrossfadeState } from './CrossfadeState'; export { default as SpotifySession } from './SpotifySession'; export { default as GetChildrenItemsOptions } from './GetChildrenItemsOptions'; export { default as PlaybackOptions } from './PlaybackOptions'; export { default as PlaybackRestrictions } from "./PlaybackRestrictions"; export { default as RecommendedContentOptions } from "./RecommendedContentOptions"; export { SpotifyAuth } from './SpotifyAuth'; export { SpotifyRemoteApi, SpotifyRemoteEvents } from './SpotifyRemote'; /** * Singleton Instance of [[SpotifyAuth]] * ```typescript * import {auth} from 'react-native-spotify-remote' * ``` */ export declare const auth: import("./SpotifyAuth").SpotifyAuth; /** * Singleton Instance of [[SpotifyRemoteApi]] * ```typescript * import {remote} from 'react-native-spotify-remote' * ``` */ export declare const remote: import("./SpotifyRemote").SpotifyRemoteApi;