/** * Disabled State Mixin * * Reduces opacity and shows `not-allowed` cursor on the host. * `pointer-events: none` is placed on the inner slot so the host stays * hoverable (e.g. for tooltips that explain why the control is disabled). */ export declare const disabledStateMixin: import("@vielzeug/ore").CSSResult; /** * Loading State Mixin * * Shows `wait` cursor on the host; blocks pointer events on inner content. */ export declare const loadingStateMixin: import("@vielzeug/ore").CSSResult; /** * Combined Disabled & Loading State Mixin * * Convenience mixin combining both disabled and loading host states. * Use for most interactive components that support both attributes. * * - Host receives the correct cursor (not-allowed / wait) and remains * hoverable so external tooltip wrappers can still fire pointer events. * - Inner shadow-DOM children have pointer-events disabled so they refuse * clicks while the host cursor signal is still visible. */ export declare const disabledLoadingMixin: import("@vielzeug/ore").CSSResult; //# sourceMappingURL=states.css.d.ts.map