import { InjectionKey, Ref } from 'vue'; import { CdrFilmstripEventEmitter } from '../components/filmstrip/interfaces'; /** Skeleton injection key */ export declare const motionKey: InjectionKey>; /** Tabs injection key */ export declare const selectedTabKey: InjectionKey>; /** Toggle button injection key */ export declare const selectedToggleKey: InjectionKey | unknown[]>>; /** Accordion injection keys */ export declare const unwrappedKey: InjectionKey>; /** * Injection key for providing a `FilmstripEventEmitter` instance via Vue's dependency injection system. * * This key is used to enable event communication within the filmstrip component tree, * allowing child components to emit events without requiring direct parent-child communication. * * @type {InjectionKey} */ export declare const CdrFilmstripEventKey: InjectionKey;