/** * Gets a row object, configured appropriately for a Check your answers component. * * @param {object} page The page to which this component row belongs. * @param {object} component The component to render on this row. * @param {Function} onAction A function to invoke if the change link is clicked. * * @returns A configuration object for a Check your answers row. */ declare const getCYARow: (page: any, component: any, onAction: any) => { pageId: any; id: any; fieldId: any; full_path: any; key: string; required: any; component: any; value: string; action: { page: any; label: any; aria_suffix: any; onAction: any; } | null; }; export default getCYARow;