import Joi from 'joi'; declare const schema: (limit?: number) => Joi.AnySchema; type SimpleTranslation = string; type PluralizedTranslation = Record<'plural' | 'singular', string>; type Translation = SimpleTranslation | PluralizedTranslation; declare const isSimpleTranslation: (tr: Translation) => tr is string; declare const isPluralizedTranslation: (tr: Translation) => tr is PluralizedTranslation; declare const localesKeys: readonly ["en", "nl"]; type LocaleKey = typeof localesKeys[number]; type Translations = { [P in LocaleKey]?: SimpleTranslation; } & { en: SimpleTranslation; }; export { schema, localesKeys, Translations, Translation, SimpleTranslation, PluralizedTranslation, isSimpleTranslation, isPluralizedTranslation, };