import { StorytellerGridTheme } from './storytellerGridTheme'; import { StorytellerRowTheme } from './storytellerRowTheme'; import { IThemeBase } from './themeBase'; export interface IStorytellerListsTheme extends IThemeBase { row: StorytellerRowTheme; grid: StorytellerGridTheme; backgroundColor: string | null; } export declare class StorytellerListsTheme implements IStorytellerListsTheme { row: StorytellerRowTheme; grid: StorytellerGridTheme; backgroundColor: string | null; constructor(themeInput?: IStorytellerListsTheme); }