export default class ListWithEventBubbling extends React.PureComponent<any, any, any> {
    constructor(props: any);
    constructor(props: any, context: any);
    state: {
        enableBubbling: boolean;
    };
    onChange: (e: any) => void;
    bubbledEventHandler: (e: any) => void;
    render(): JSX.Element;
}
import React from 'react';
