/**
 * Given the name of a collection, returns the corresponding lock collection's name.
 * @author Benedikt Arnarsson
 * @param collectionName the collection whose lock collection we want to find.
 * @returns the name of the corresponding lock collection.
 */
declare const getLockCollectionName: (collectionName: string) => string;
export default getLockCollectionName;
