import { FdsI18nLike } from './i18n'; type FdsInterpolationValues = Record; export declare const useFdsI18n: () => { i18n: FdsI18nLike | undefined; locale: import('vue').ComputedRef; t: (key: string, values?: FdsInterpolationValues) => string; tCore: (key: string, values?: FdsInterpolationValues) => string; }; export {};