import type CreateUpdateIdentifierPersonaOptions from '../repoFactory/options/CreateUpdateIdentifierPersonaOptions'; import type GetIdentifierOptions from '../repoFactory/options/GetIdentifierOptions'; import type CreateUpdateIdentifierPersonaResult from '../repoFactory/results/CreateUpdateIdentifierPersonaResult'; import type GetIdentifierResult from '../repoFactory/results/GetIdentifierResult'; import type Lockable from '../repoFactory/utils/Lockable'; import type Config from './Config'; type TheCreateUpdateIdentifierPersonaOptions = CreateUpdateIdentifierPersonaOptions & { readonly getIdentifier?: (opts: GetIdentifierOptions) => Promise; }; declare const retryCreateUpdateIdentifierPersona: (config: Config) => (opts: TheCreateUpdateIdentifierPersonaOptions) => Promise; export default retryCreateUpdateIdentifierPersona;