import { ReactElement } from 'react'; declare type Props = { children: { [key: string]: any; } | string | number | boolean; }; /** * For debugging data within your component View * * @example * * ```tsx * const App = (props: {data:object}) =>
{props.data}