import type { BaseDecorator, BaseInterface } from '../Base/types.js'; import type { Base, BaseConstructor } from '../Base/index.js'; /** * BreakpointManager class. * @link https://js-toolkit.studiometa.dev/api/decorators/withBreakpointManager.html */ export declare function withBreakpointManager(BaseClass: typeof Base, breakpoints: Array<[string, BaseConstructor]>): BaseDecorator;