/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * Cross-component classes for emulating pseudo-classes. * * All components that style with psuedo-classes for their DOM structure also * support emulating these states. * * @example * ```html * * ``` */ export declare const PSEUDO_CLASSES: { active: string; checked: string; disabled: string; focus: string; focusVisible: string; hover: string; indeterminate: string; invalid: string; }; /** * Returns whether the element is disabled. * * @param element The element to check. * @return true if the element is disabled. */ export declare function isDisabled(element: Element): boolean;