export declare class DevopnessButton extends HTMLElement {
    _color: string;
    _backgroundColor: string;
    _borderColor: string;
    constructor();
    static get observedAttributes(): string[];
    connectedCallback(): void;
    attributeChangedCallback(attr: string, oldValue: string, newValue: string): void;
    get disabled(): boolean;
    set color(value: string);
    get color(): string;
    set backgroundColor(value: string);
    get backgroundColor(): string;
    set borderColor(value: string);
    get borderColor(): string;
}
declare global {
    namespace JSX {
        interface IntrinsicElements {
            "devopness-button": any;
        }
    }
}
