UNPKG

next

Version:

The React Framework

12 lines (11 loc) 411 B
import React from 'react'; declare type State = JSX.Element[] | undefined; declare type SideEffectProps = { reduceComponentsToState: <T>(components: Array<React.ReactElement<any>>, props: T) => State; handleStateChange?: (state: State) => void; headManager: any; inAmpMode?: boolean; children: React.ReactNode; }; export default function SideEffect(props: SideEffectProps): null; export {};