import { CircularTileLiveChipTheme, ICircularTileLiveChipTheme } from './circularTileLiveChipTheme'; import { CircularTitleTheme, ICircularTitleTheme } from './circularTitleTheme'; type ArrowBlockAlignment = 'cell' | 'thumbnail'; export interface ICircularTileTheme { liveChip: ICircularTileLiveChipTheme; title: ICircularTitleTheme; unreadIndicatorColor: string | null; readIndicatorColor: string; unreadStrokeWidth: number; readStrokeWidth: number; scrollIndicatorBlockAlignment: ArrowBlockAlignment; } export declare class CircularTileTheme implements ICircularTileTheme { liveChip: CircularTileLiveChipTheme; title: CircularTitleTheme; unreadIndicatorColor: string | null; readIndicatorColor: string; unreadStrokeWidth: number; readStrokeWidth: number; scrollIndicatorBlockAlignment: ArrowBlockAlignment; } export {};