/** * Removes an entry with a given id from a collection. * * @param {string} collectionName The name of the collection to delete the entry from. * @param {object} formData The top-level formData object. * @param {string} id The id of the entry to be deleted. * @returns null if the target entry could not be deleted. * The deleted entry if it was deleted successfully. */ declare const removeCollectionPageEntry: (collectionName: any, formData: any, id: any) => any; export default removeCollectionPageEntry;