import { SpotifyAuthState } from "./models";
export declare class SpotifyUser {
    birthdate: string;
    country: string;
    display_name: string;
    email: string;
    uri: string;
    id: string;
    followers: any;
    product: string;
    status: number;
}
export declare class UserProfile {
    private static instance;
    private constructor();
    static getInstance(): UserProfile;
    accessExpired(): Promise<boolean>;
    getUserProfile(): Promise<SpotifyUser>;
    spotifyAuthState(): Promise<SpotifyAuthState>;
}
