import { TranslateOptions } from 'vue-i18n'; export interface TSI18n { t: ( /** * @param text Text to find the variable name */ text: string, plural?: number, options?: TranslateOptions) => T; } export declare const getTranslationKey: (text: string) => string; /** * * @param text Text from Figma to be translated. */ declare const useI18n: () => TSI18n; export default useI18n;