import { SpotifyConfig } from "./types";
/**
 * Typed config plugin helper for `app.config.ts` (Expo SDK 56+).
 *
 * @example
 * import withSpotifySdk from "@wwdrew/expo-spotify-sdk/plugin";
 *
 * export default ({ config }) => ({
 *   ...config,
 *   plugins: [
 *     withSpotifySdk({
 *       clientID: "your-spotify-client-id",
 *       scheme: "myapp",
 *       host: "spotify-auth",
 *     }),
 *   ],
 * });
 */
declare const _default: (props: SpotifyConfig) => [string, SpotifyConfig];
export default _default;
export type { SpotifyConfig, SpotifyScopes } from "./types";
