import { FlowRemoteElement } from '../lib/FlowRemoteElement'; import { BadgeProps as RemoteBadgeElementProps } from '@mittwald/flow-react-components'; export type { BadgeProps as RemoteBadgeElementProps } from '@mittwald/flow-react-components'; export declare class RemoteBadgeElement extends FlowRemoteElement { static get remoteAttributes(): string[]; static get remoteProperties(): { className: {}; color: {}; isDisabled: {}; }; static get remoteEvents(): { close: {}; press: {}; }; static get remoteSlots(): never[]; } declare global { interface HTMLElementTagNameMap { "flr-badge": InstanceType; } }