export declare abstract class Style { private readonly property; private readonly value; protected constructor(property: string, value: string); getCss(): string; }