import { ChromecastDevice } from "stratocaster"; import { BaseApp } from "../base"; import { PlexPlayerChannel } from "./channel"; import { IPlexOpts } from "./config"; export interface IPlaybackOptions { language?: string; startTime?: number; } export declare class PlexApp extends BaseApp { private readonly api; static createPlayerChannel(options: IPlexOpts): PlexPlayerChannel; constructor(device: ChromecastDevice, options: IPlexOpts); resumeByUri(uri: string, opts?: IPlaybackOptions): Promise; playByUri(uri: string, opts?: IPlaybackOptions): Promise; }