/** * @class ExampleComponent */ import * as React from 'react'; export declare type Props = { onFilterTextChange: (e: any) => void; }; export default class ExampleComponent extends React.Component { render(): JSX.Element; }