import type { CustomElement } from '../Components/Abstracts/CustomElement'; import { ElevationWeight } from '../Types/ElevationWeight'; import type { ControlBehaviorBase, ControlBehaviorReturn } from './Abstracts/Behavior'; /** * Represents the `IElevatable` interface. * * @public */ export interface IElevatableProps { elevation: ElevationWeight; } /** * @public */ export declare const Elevatable: >(base: T) => ControlBehaviorReturn; /** * @public */ export declare namespace IElevatableProps { const DEFAULTS: IElevatableProps; } //# sourceMappingURL=Elevatable.d.ts.map