import AttributeValues from "./AttributeValues.js";
export default class Style {
    readonly attributeValues: AttributeValues;
    constructor(attributeValues: AttributeValues);
    css: string;
    inject: () => void;
    private getCss;
}
