import { type IAttachable } from '../../../Behaviors/Attachable'; import { ElevationWeight } from '../../../Types/ElevationWeight'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { IElevationElementProps } from './IElevationElementProps'; declare const ElevationElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array) => IAttachable) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Elevation - A visual effect indicating the depth of an element relative to its surroundings. * * @element mosaik-elevation * * @description * Elevation is a design technique used to create a sense of depth and hierarchy in a user interface. * Elements with higher elevation appear to be physically closer to the viewer, while elements with lower * elevation appear further away. Elevation is often used to highlight and differentiate elements, such as * cards, dialogs, and buttons, within a layout. * * @category Visual Effects * * @example * Basic elevation effect: * ```html * *
Elevated content
*
* ``` * * @example * High elevation for dialogs: * ```html * *
Card with high elevation
*
* ``` * * @public */ export declare class ElevationElement extends ElevationElement_base implements IElevationElementProps, IAttachable { private _weigh; /** * @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 `weigh` property. * * @public * @attr */ get weigh(): ElevationWeight; set weigh(value: ElevationWeight); /** * @protected * @override */ protected onApplyTemplate(): void; /** * @protected */ protected onWeighPropertyChanged(prev?: ElevationWeight, next?: ElevationWeight): void; /** * Reads the target box-shadow from the host's computed style and applies it to the control. * Temporarily disables the CSS transition so that `getComputedStyle` returns the final * target value instead of an in-progress transitioning value. * * @private */ private applyBoxShadow; } /** * @public */ export declare namespace ElevationElement { type Props = IElevationElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-elevation': ElevationElement; } } export {}; //# sourceMappingURL=ElevationElement.d.ts.map