import { ITextWordInvoice } from './invoice-words.model';
export interface IConfigurationInvoice {
    textWords?: ITextWordInvoice | null;
    pdfViewEnabled?: boolean;
    language?: LanguageType;
    quantityDecimalPlaces?: string;
    colorSettings?: IColorSettings | null;
}
export interface IColorSettings {
    backgroundColor: string;
    textColor: string;
}
export type LanguageType = 'en' | 'de';
