export interface IHeadlineStyle { fontSize?: number; color?: string; backgroundColor?: string; marginLeft?: number; marginRight?: number; marginBottom?: number; marginTop?: number; display?: 'none' | 'flex'; } export interface IImageView { backgroundColor?: string; height?: number; width?: number; marginLeft?: number; marginRight?: number; marginBottom?: number; marginTop?: number; display?: 'none' | 'flex'; } export interface IButtonStyle { backgroundColor?: string; height?: number; width?: number; fontSize?: number; color?: string; textAlign?: 'center' | 'right' | 'left'; marginLeft?: number; marginRight?: number; marginBottom?: number; marginTop?: number; display?: 'none' | 'flex'; }