export declare class CanvasProperties { /** * Colors, Styles, and Shadows * @type {string} */ fillStyle: string; strokeStyle: string; shadowColor: string; shadowBlur: number; shadowOffsetX: number; shadowOffsetY: number; /** * Line Styles */ lineCap: string; lineJoin: string; lineWidth: number; miterLimit: number; /** * Text */ font: string; textAlign: string; textBaseline: string; /** * Allows any boolean operations to trigger * their default values if doing a check * for undefined */ reset(): void; }