import { ReactiveController, ReactiveElement } from 'lit'; export type StatePressed = ReactiveElement & { pressed: boolean; readonly?: boolean; _internals?: ElementInternals; }; export declare function statePressed(): ClassDecorator; /** * Responsible for managing the aria-pressed attribute and the --pressed CSS state */ export declare class StatePressedController implements ReactiveController { private host; constructor(host: T); hostConnected(): void; hostUpdated(): void; }