import { JSX } from 'react'; import { RenderProps } from '../isRenderProps'; interface Props { props: T; children: JSX.Element | RenderProps; } export declare const State: ({ props, children, ...rest }: Props) => JSX.Element; export {};