export interface TitleParameters {
    fontFamily: string;
    fontSize: number;
    fontStyle: string;
    fontUnderline: boolean;
    showTitle: boolean;
    titleAlignment: 'top' | 'bottom' | 'middle';
    titleColor: string;
}
