import { CustomElement } from '../../Abstracts/CustomElement'; import type { ITileListItemElementProps } from './ITileListItemElementProps'; declare const TileListItemElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * The `TileListItemElement` element. * * @slot - The default slot. * * @csspart content - The content part. * @csspart resize - The resize part. * @csspart root - The root part. * * @cssprop {String} --tile-list-item-bg-color - The list item bg color CSS custom property. * @cssprop {String} --tile-list-item-border - The list item border CSS custom property. * @cssprop {String} --tile-list-item-content-padding - The list item content padding CSS custom property. * @cssprop {String} --tile-list-item-dragging-opacity - The list item dragging opacity CSS custom property. * @cssprop {String} --tile-list-item-dragover-border-color - The list item dragover border color CSS custom property. * @cssprop {String} --tile-list-item-font-family - The list item font family CSS custom property. * @cssprop {String} --tile-list-item-font-letter-spacing - The list item font letter spacing CSS custom property. * @cssprop {String} --tile-list-item-font-line-height - The list item font line height CSS custom property. * @cssprop {String} --tile-list-item-font-size - The list item font size CSS custom property. * @cssprop {String} --tile-list-item-font-text-decoration - The list item font text decoration CSS custom property. * @cssprop {String} --tile-list-item-font-text-transform - The list item font text transform CSS custom property. * @cssprop {String} --tile-list-item-font-weight - The list item font weight CSS custom property. * @cssprop {String} --tile-list-item-gap - The list item gap CSS custom property. * @cssprop {String} --tile-list-item-header-bg-color - The list item header bg color CSS custom property. * @cssprop {String} --tile-list-item-header-padding - The list item header padding CSS custom property. * @cssprop {String} --tile-list-item-padding-bottom - The list item padding bottom CSS custom property. * @cssprop {String} --tile-list-item-padding-left - The list item padding left CSS custom property. * @cssprop {String} --tile-list-item-padding-right - The list item padding right CSS custom property. * @cssprop {String} --tile-list-item-padding-top - The list item padding top CSS custom property. * @cssprop {String} --tile-list-item-shadow - The list item shadow CSS custom property. * @cssprop {String} --tile-list-item-shadow-blur - The list item shadow blur CSS custom property. * @cssprop {String} --tile-list-item-shadow-color - The list item shadow color CSS custom property. * @cssprop {String} --tile-list-item-shadow-offset-x - The list item shadow offset x CSS custom property. * @cssprop {String} --tile-list-item-shadow-offset-y - The list item shadow offset y CSS custom property. * @cssprop {String} --tile-list-item-shadow-spread - The list item shadow spread CSS custom property. * @cssprop {String} --tile-list-item-transition-duration - The list item transition duration CSS custom property. * @cssprop {String} --tile-list-item-transition-mode - The list item transition mode CSS custom property. * @cssprop {String} --tile-list-item-transition-property - The list item transition property CSS custom property. * @cssprop {String} --tile-list-item-translate - The list item translate CSS custom property. * * @dependency mosaik-dot - The Dot element. * @dependency mosaik-resize - The Resize element. * * @example * ```html * * Tile * * ``` * * @public */ export declare class TileListItemElement extends TileListItemElement_base implements ITileListItemElementProps { private _col; private _colSpan; private _order; private _reorderable; private _resizable; private _row; private _rowSpan; private readonly _inlineStyleController; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `col` property. * * @public * @attr */ get col(): number; set col(value: number); /** * Gets or sets the `colSpan` property. * * @public * @attr */ get colSpan(): number; set colSpan(value: number); /** * Gets or sets the `order` property. * * @public * @attr */ get order(): number; set order(value: number); /** * Gets or sets the `reorderable` property. * * @public * @attr */ get reorderable(): boolean; set reorderable(value: boolean); /** * Gets or sets the `resizable` property. * * @public * @attr */ get resizable(): boolean; set resizable(value: boolean); /** * Gets or sets the `row` property. * * @public * @attr */ get row(): number; set row(value: number); /** * Gets or sets the `rowSpan` property. * * @public * @attr */ get rowSpan(): number; set rowSpan(value: number); /** * @private */ onResizeStart(): void; /** * @private */ onResize(): void; /** * @private */ onResizeEnd(): void; /** * @private */ onResizeCancel(): void; /** * @private */ onDragStart(event: DragEvent): void; /** * @private */ onDragEnd(): void; /** * @protected * @override */ protected updated(changedProperties: Map): void; } /** * @public */ export declare namespace TileListItemElement { type Props = ITileListItemElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-tile-list-item': TileListItemElement; } } export {}; //# sourceMappingURL=TileListItemElement.d.ts.map