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