import { EventBus } from '@redneckz/uni-jsx/lib/EventBus/EventBus'; import { type Slot } from '../../model/ContentPageDef'; export declare type CarouselTariffsCardAction = { type: 'fold'; isUnfolded: boolean; parent?: Slot; }; export declare const carouselTariffsCardEventBus: EventBus<{ fold: CarouselTariffsCardAction; }>;