import { Breakpoint } from "@odx/foundation"; import { ReactiveController, ReactiveControllerHost } from "lit"; interface BreakpointControllerOptions { breakpoint: Breakpoint['id']; onChange: (matches: boolean) => void; } declare class BreakpointController implements ReactiveController { #private; constructor(host: ReactiveControllerHost, options: BreakpointControllerOptions); hostConnected(): void; hostDisconnected(): void; } export { BreakpointController, BreakpointControllerOptions };