import type { LegalEntityType } from '../../core/models/api/legal-entity-type';
import type { TranslationKey, Translations } from '../../language/types';
import type { IntroductionScreen } from './types';
export declare enum IntroductionScreenTranslationKeyElements {
    ListItem = "LI",
    Paragraph = "P"
}
interface IntroductionScreenTranslationKeyFactors {
    elementType?: IntroductionScreenTranslationKeyElements;
    legalEntityType: LegalEntityType;
    introductionScreen: IntroductionScreen;
}
export declare const getIntroductionScreenTranslationKeys: (translations: Translations, factors: IntroductionScreenTranslationKeyFactors) => TranslationKey[];
export {};
