import { LitElement } from 'lit'; type Constructor = new (...args: any[]) => T; export declare class UUIActiveMixinInterface { /** * Set this boolean to true for then the related composition is sorted. * @type {boolean} * @attr * @prop */ active: boolean; } /** * This mixin provides functionality to other components to be active using a common `active` property. * * @param {Object} superClass - superclass to be extended. * @mixin */ export declare const ActiveMixin: >(superClass: T) => Constructor & T; /** @deprecated Use UUIActiveMixinInterface instead */ export type ActiveMixinInterface = UUIActiveMixinInterface; export {};