/**
 * @license
 * Copyright 2026 Kai-Orion & Sandlada
 * SPDX-License-Identifier: MIT
 */
import { type LitElement, type TemplateResult } from 'lit';
import type { MixinBase, MixinReturn } from '../../utils/behaviors/mixin';
export interface IMixinElevationAttributes {
    ignoreGlobalConfig: boolean;
    disableElevation: boolean;
}
export interface IMixinElevationOptions extends IMixinElevationAttributes {
    renderElevation(): TemplateResult;
}
export declare function mixinElevationOptions<T extends MixinBase<LitElement>>(base: T): MixinReturn<T, IMixinElevationOptions>;
//# sourceMappingURL=elevation-options.mixin.d.ts.map