import { IFont } from '../interfaces/interfaces'; import { IpEmailObjectStoreService } from '../services/internals/ip-email-object-store/ip-email-object-store.service'; export declare class FontStylesComponent { private ipEmailObject; fallbackFonts: string[]; font: IFont; private fontsMap; private stylesMap; constructor(ipEmailObject: IpEmailObjectStoreService, googleFonts: string[], fallbackFonts: string[]); get fontWeightList(): number[]; get fontFamilyList(): string[]; get styles(): IFont['style'][]; markForCheck(): void; isGoogleFont(): boolean; getStyleLabel(style: IFont['style']): string; hasProperty(property: string): boolean; }