import BaseComponent from './base-component'; export interface StyleData { id: string; properties: any; } export default class Style extends BaseComponent { componentType: string; constructor(data: any, options?: any); keys(): string[]; getValue(key: string): string; setValue(key: string, value: string | number): void; removeKey(key?: string): void; }