import { IPlexPinHeaders, IPlexClientDetails } from "../models/PlexCodeModels"; /** * Contains a series of helper functions and values for getting and building the url's needed to * request a Plex pin and token */ export declare class LinkHelper { static readonly PLEX_PIN_BASE_PATH = "https://plex.tv/api/v2"; static readonly PLEX_AUTH_BASE_PATH = "https://app.plex.tv/auth"; static readonly PLEX_DEFAULT_PLATFORM = "Web"; /** * Returns the headers needed to make requests to the Plex API using the client info * @param {IPlexClientDetails} clientInfo Client info to build headers from * * @returns {IPlexPinHeaders} The headers needed to make the requests to the Plex API */ static getHeaders(clientInfo: IPlexClientDetails): IPlexPinHeaders; }