UNPKG

@vertical-insure/web-components

Version:

Vertical Insure Web Components using Lit and Open Web Standards

15 lines (14 loc) 393 B
import { LitElement } from "lit"; export declare enum OfferAddButtonType { ACCEPTED = 0, DECLINED = 1 } export declare class OfferAddButton extends LitElement { static styles: import("lit").CSSResult; type?: OfferAddButtonType; addLabel?: string; removeLabel?: string; selected: boolean; disabled: boolean; render(): import("lit-html").TemplateResult<1>; }