declare const various: { value: string; name: string; transc: string; }[]; declare const letters: { value: string; name: string; transc: string; }[]; declare const vowels: { value: string; name: string; transc: string; }[]; declare const consonants: { value: string; name: string; transc: string; }[]; declare const signs: { value: string; name: string; transc: string; }[]; declare const punctuation: { value: string; name: string; transc: string; }[]; declare const reduplicator: { value: string; name: string; transc: string; }[]; declare const digits: { value: string; name: string; transc: string; }[]; declare const ellipsis: { value: string; name: string; transc: string; }[]; export { various, letters, vowels, consonants, signs, punctuation, reduplicator, digits, ellipsis, };