import type OverwriteIdentifierResult from '../../repoFactory/results/OverwriteIdentifierResult'; import type Config from '../Config'; export interface CreateOrUpdateIdentifierOptions { readonly filter: object; readonly update: object; readonly upsert: boolean; } declare const createOrUpdateIdentifier: (config: Config) => ({ filter, update, upsert, }: CreateOrUpdateIdentifierOptions) => Promise; export default createOrUpdateIdentifier;