declare type Props = { render: (value: T, setValue: (newValue: T) => void) => JSX.Element; initialValue: T; }; export declare function State({ render, initialValue, }: Props): JSX.Element; export default State;