export declare class ReadStyle { color: string; fontSize: string; textAlign: string; fontFamily: string; textShadow: string; backgroundColor: string; constructor(data: ReadStyleData); } export interface ReadStyleData { color: string; fontSize: string; textAlign: string; fontFamily: string; textShadow: string; backgroundColor: string; }