/** * This function effectively adds a new entry to a page collection by * invalidating the current active ID for that collection. * * An invalid active ID for a collection causes a new entry to be created * the next time an onChange is triggered for that page. See PageCollection.jsx. * * @param {string} collectionName The name of the collection to create the new entry for. * @param {object} formData The top level formData object. */ declare const addCollectionPageEntry: (collectionName: any, formData: any) => void; export default addCollectionPageEntry;