/** * Get the CYA rows for a collection's master page. * * @param {Object} page The master page object. * @param {Object} data The data at this master page's level. * @param {Function} onAction The onAction callback passed in from FormRenderer. * @param {Function} fnOverride Function used to override the creation of container rows. * @param {Object} activeIds The active IDs that must be set for the current item to be active. * @returns An array of CYA rows. */ declare const getCYARowsForCollectionPage: (page: any, onAction: any, fnOverride: any, data: any, activeIds?: {}) => { pageId: any; fieldId: string; full_path: string; key: any; type: string; size: any; action: { onAction: any; label: string; } | null; }[]; export default getCYARowsForCollectionPage;