/** * Takes the name of a collection and returns its active ID. * * If collectionName is a dot-separated string then this function will * return the active ID for the last collection in that string. * * e.g. A collectionName of people.documents will return documentsActiveId. * * @param {string} collectionName The name of the collection, or dot-separated path. * @param {object} data Top-level formData. * @returns The active ID for the collection, or null if it doesn't exist. */ declare const getCollectionPageActiveId: (collectionName: any, formData: any) => any; export default getCollectionPageActiveId;