import { JSX } from 'react'; export type RenderProps = { (props: T): JSX.Element; }; export declare const isRenderProps: (children: JSX.Element | RenderProps) => children is RenderProps;