/**
 * Holds Style/CSS-related functionality
 */
/**
 * Interface for defining a style property
 */
export interface IStyleProperty {
    /**
     * Property
     */
    "property": string;
    /**
     * Value of the property
     */
    "value": string;
}
