UNPKG

@vertical-insure/web-components

Version:

Vertical Insure Web Components using Lit and Open Web Standards

14 lines (13 loc) 376 B
import { LitElement } from "lit"; export declare enum OfferRadioButtonType { ACCEPTED = 0, DECLINED = 1 } export declare class OfferRadioButton extends LitElement { static styles: import("lit").CSSResult; type?: OfferRadioButtonType; checked: boolean; display?: string; change(e: Event): void; render(): import("lit-html").TemplateResult<1>; }