import { ButtonAlignment } from './buttonAlignment'; interface IStorytellerPlayerIcons { share?: string | null; } export interface IStorytellerPlayerTheme { actionButton: { alignment: ButtonAlignment; icon?: string | null; showOnMobile: boolean; }; disableUrls: boolean; showStoryIcon: boolean; showShareButton: boolean; icons: IStorytellerPlayerIcons; playAllStories: boolean; } export declare class StorytellerPlayerTheme implements IStorytellerPlayerTheme { actionButton: { alignment: ButtonAlignment; icon: null; showOnMobile: boolean; }; disableUrls: boolean; showStoryIcon: boolean; showShareButton: boolean; playAllStories: boolean; icons: IStorytellerPlayerIcons; } export {};