/**
 * @license
 * Copyright 2025 Sandlada & Kai Orion
 * SPDX-License-Identifier: MIT
 */
import { type Directive } from 'vue';
import { type TElevationLevel } from './elevation.definition';
/**
 * @example
 * ```html
 * <div v-elevation="3">
 *  Elevation Box
 * </div>
 *
 * v-elevation = 0 | 1 | 2 | 3 | 4 | 5
 * ```
 */
export declare const vElevation: Directive<HTMLElement, TElevationLevel>;
//# sourceMappingURL=elevation-directive.d.ts.map