/** * Representing a font that can be set in an ICanvas to render text. Values are similar to css. */ export declare class CanvasFont { fontStyle: 'normal' | 'italic'; fontWeight: number | 'normal' | 'bold' | 'bolder' | 'lighter'; fontSize: number; fontFamily: string; constructor(fontSize?: number, fontFamily?: string); }