import { RectangularTileUnreadIndicatorTheme, IRectangularTileUnreadIndicatorTheme } from './rectangularTileUnreadIndicatorTheme'; import { RectangularTileTitleTheme, IRectangularTileTitleTheme } from './rectangularTileTitleTheme'; import { RectangularTileChipTheme, IRectangularTileChipTheme } from './rectangularTileChipTheme'; import { RectangularTileLiveChipTheme, IRectangularTileLiveChipTheme } from './rectangularTileLiveChipTheme'; export interface IRectangularTileTheme { chip: IRectangularTileChipTheme; liveChip: IRectangularTileLiveChipTheme; title: IRectangularTileTitleTheme; padding: number; unreadIndicator: IRectangularTileUnreadIndicatorTheme; showWebStoriesIcon: boolean; showGradient: boolean; } export declare class RectangularTileTheme implements IRectangularTileTheme { chip: RectangularTileChipTheme; liveChip: RectangularTileLiveChipTheme; padding: number; unreadIndicator: RectangularTileUnreadIndicatorTheme; title: RectangularTileTitleTheme; showWebStoriesIcon: boolean; showGradient: boolean; }