import type { BaseInterface, BaseDecorator } from '../Base/types.js'; import type { Base } from '../Base/index.js'; /** * Extends the configuration of an existing class. * @link https://js-toolkit.studiometa.dev/api/decorators/withResponsiveOptions.html */ export declare function withResponsiveOptions(BaseClass: typeof Base, { responsiveOptions }?: { responsiveOptions?: any[]; }): BaseDecorator;