import type { Ref } from 'vue'; import type { MergedTheme } from '../../_mixins'; import type { MappingCardTheme } from '../styles'; import type { MappingCardProps } from './interface'; export interface MappingCardLocale { copyTooltip: string; editTooltip: string; deleteTooltip: string; switchTooltip: string; } export interface MappingCardInjection { mergedClsPrefixRef: Ref; mergedThemeRef: Ref>; localeRef: Ref; props: MappingCardProps; } export declare const mappingCardInjectionKey: import("vue").InjectionKey;