/** * Combines refdata options with custom options with the use of `from_refdata` in the custom option * Allowing for nesting of components within refdata lists of checkboxes or radios * Also allows appending custom options to refdata options list * @param {Array} refdataOptions The list of options coming from refdata * @param {Array} options The list of options being defined in the form * @returns A combined list of refdata options and custom options to be rendered */ declare const nestInRefdataOptions: (refdataOptions: any, options: any) => any; export default nestInRefdataOptions;