import * as React from "react"; import { IUniversalInterfaceProps } from "../typing"; export interface DocumentTouchConstructor extends Document { [key: string]: any; new (): DocumentTouchConstructor; readonly prototype: Document; } export interface TouchWindow extends Window { DocumentTouch?: DocumentTouchConstructor; } export interface ITouchSupportSensorState { touchSupported: boolean; } export interface ITouchSupportSensorProps extends IUniversalInterfaceProps { onlyTouch?: boolean; onlyMouse?: boolean; } export declare const touchSupported: () => boolean; export declare class TouchSupportSensor extends React.Component { constructor(props: any, context: any); render(): any; }