import { Key, Locale, TextValue } from './TranslationRecords'; interface Text { key: Key; value: TextValue; locale: Locale; } declare type TextQuery = [Locale | undefined, Key]; export type { TextQuery }; export default Text;