import { ReactNode } from 'react'; import { FormDataValue } from '../types/FormData'; /** * Function to render data as a React component. * This function dynamically renders different types of data. * @param data - The data to be rendered, can be of various types. * @param placeholderEmptyData * @returns A ReactNode that visually represents the input data. */ export declare const renderData: (data: FormDataValue, placeholderEmptyData?: ReactNode) => ReactNode;