export declare class Style {
    #private;
    constructor(property: string, value: string);
    /**
     * The string that represents a CSS property.
     */
    get property(): string;
    /**
     * The string that represents the value of the CSS property.
     */
    get value(): string;
    /**
     * The string that represents the complete CSS declaration with property and value.
     */
    get declaration(): string;
}
