/** * Copyright (c) Cisco Systems, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import { LitElement } from "lit"; export declare namespace DraggableItem { const ELEMENT_base: import("../../mixins/FocusMixin").FocusMixinReturnType; export class ELEMENT extends ELEMENT_base { disabled: boolean; extended: boolean; editable: boolean; static get styles(): import("lit").CSSResult[]; get draggableItemClassMap(): { extended: boolean; default: boolean; disabled: boolean; }; render(): import("lit-html").TemplateResult<1>; } export {}; } declare global { interface HTMLElementTagNameMap { "md-draggable-item": DraggableItem.ELEMENT; } }