/**
 * @license
 * Copyright 2026 Kai-Orion & Sandlada
 * SPDX-License-Identifier: MIT
 */
import type { LitElement } from 'lit';
import type { IAttachable } from '../../utils';
export interface IFocusRing extends LitElement, IAttachable {
    focused: boolean;
    inward: boolean;
    animationDisabled: boolean;
    disabled: boolean;
    ignoreGlobalConfig: boolean;
    shapeInherit: boolean;
}
//# sourceMappingURL=focus-ring.interface.d.ts.map