/** * Gets the value of a field within the top-level JSON form data, * based on a dot-separated field identifier. * * Example: * getSourceData({ * 'alpha': { * 'bravo': 'Charlie' * } * }, 'alpha.bravo') will return the value 'Charlie'. * * @param {object} data The top-level JSON form data to iterate through. * @param {string} fieldId The dot-separated path to the field. * @returns The value of the field specified. */ declare const getSourceData: (data: any, fieldId: any) => any; export default getSourceData;