import { InjectionKey, Ref } from 'vue'; import { OnyxTabsProps } from '../OnyxTabs/types.js'; export type OnyxCodeTabsProps = Omit, "size" | "density" | "stretched" | "label"> & Partial, "label">>; export declare const CODE_TABS_INJECTION_KEY: InjectionKey<{ /** * A map of tab values to their corresponding code snippets. * key = tab value, value = code snippet. */ tabs: Ref>; }>;