import { ReactNode } from "react"; /** * @deprecated use PropsWithChildren instead */ export interface IChildrenProps { children?: JSX.Element | readonly JSX.Element[] | string | readonly ReactNode[]; }