import { LitElement, PropertyDeclaration } from 'lit'; import { RadioButtonStyle } from './RadioButtonStyle'; import { LabelAlignment } from "@cometchat/uikit-resources"; export declare class CometChatRadioButton extends LitElement { checked: boolean; name: string; dir: "ltr" | "rtl" | "auto"; labelText: string; labelAlignment: LabelAlignment; disabled: boolean; radioButtonStyle: RadioButtonStyle; createRenderRoot(): this; constructor(); static styles: import("lit").CSSResult[]; render(): import("lit-html").TemplateResult<1>; requestUpdate(name?: PropertyKey, oldValue?: unknown, options?: PropertyDeclaration): void; updateChechbox: any; labelStyle: any; checkboxStyle: any; } declare global { namespace JSX { interface IntrinsicElements { "cometchat-radio-button": any; } } interface TagNameMap { 'cometchat-radio-button': CometChatRadioButton; } } //# sourceMappingURL=cometchat-radio-button.d.ts.map