import { IStorytellerInstructionsButtonsTheme, StorytellerInstructionsButtonTheme } from './instructionsButtonTheme'; export interface IStorytellerIcons { forward?: string; back?: string; swipe?: string; pause?: string; } export interface IStorytellerInstructionsTheme { show: boolean; icons: IStorytellerIcons | null; headingColor: string | null; subHeadingColor: string | null; backgroundColor: string | null; button: IStorytellerInstructionsButtonsTheme; } export declare class StorytellerInstructionsTheme implements IStorytellerInstructionsTheme { show: boolean; headingColor: string | null; subHeadingColor: string | null; backgroundColor: string | null; button: StorytellerInstructionsButtonTheme; icons: IStorytellerIcons; }