import { TwitchEmbedLayout } from './TwitchEmbedLayout';
import { TwitchEmbedTheme } from './TwitchEmbedTheme';
/**
 * Interface that holds all the Twitch.Embed initialization options.
 */
export interface TwitchEmbedOptions {
    /**
     * Channel name, for a live stream.
     * If channel is specified along with video and/or collection, only channel is used.
     */
    channel?: string;
    /**
     * Video ID for a specified video.
     */
    video?: string;
    /**
     * Collection ID for a specified collection.
     * If both video and collection are specified, the specified collection starts playing from the specified video.
     * If the video is not in the collection, collection is ignored and the specified video is played.
     */
    collection?: string;
    /**
     * Height of the embedded window, in pixels.
     * Can be expressed as a percentage, by passing a string like 100%. Recommended minimum: 300.
     */
    height: number | string;
    /**
     * Width of the embedded window, in pixels.
     * Can be expressed as a percentage, by passing a string like 50%. Recommended minimum: 400.
     */
    width: number | string;
    /**
     * Only required if your site is embedded on any domain(s) other than the one that instantiates the Twitch embed.
     * Example parent parameter: ["streamernews.example.com", "embed.example.com"]
     */
    parent?: string[];
    /**
     * If true, the video starts playing automatically, without the user clicking play.
     * The exception is mobile devices, on which video cannot be played without user interaction. Default: true.
     */
    autoplay?: boolean;
    /**
     * Specifies whether the initial state of the video is muted. Default: false.
     */
    muted?: boolean;
    /**
     * Only valid for Video on Demand content. Time in the video where playback starts.
     * Specifies hours, minutes, and seconds. Default: 0h0m0s (the start of the video).
     */
    time?: string;
    /**
     * Determines the screen layout. Can be either only video or video-with-chat.
     * video-with-chat: Default if channel is provided.
     * video: Default if channel is not provided.
     */
    layout?: TwitchEmbedLayout;
    /**
     * The Twitch embed color theme to use. Valid values: light or dark. Default: dark.
     */
    theme?: TwitchEmbedTheme;
    /**
     * If true, the player can go full screen. Default: true.
     */
    allowFullscreen?: boolean;
}
