/** * Duplicates the currently active entry in a named collection's data. * Once duplicated, the new entry is set as the active entry. * * This functions supports collectionName being a dot-separated string * in the case of nested page collections. * * @param {string} collectionName The name of the collection. * @param {object} formData A page's form data containing the collection's data. * @return true if the entry ws successfully duplicated, false if not. */ declare const duplicateCollectionPageActiveEntry: (collectionName: any, formData: any) => string | null; export default duplicateCollectionPageActiveEntry;