/** * Simple operation to check if a given value in data is truthy or not. * Supports getting a value from an interpolated field string. * @param {object} config The operation config. * @param {object} data The page's formData. * @returns true if the value is truthy, false if it isn't or doesn't exist. */ declare const checkValueIsTruthy: (config: any, data: any) => boolean; export default checkValueIsTruthy;