import * as React from "react"; interface IClickOutsideProps { onClickOutside: (e: any) => void; children: React.ReactNode; } export default class ClickOutside extends React.PureComponent { private isTouch; private container; constructor(props: any); componentDidMount(): void; componentWillUnmount(): void; getContainer(ref: any): void; handle: (e: any) => void; render(): JSX.Element; } export {};