import GenObject from './genObject'; export interface StyleObject extends GenObject { styleType: string; readOnly?: boolean; value: string; } export default StyleObject;