import * as React from 'react'; export declare type TComponent = React.ComponentClass | React.StatelessComponent; export declare type THoc = (Comp: TComponent) => TComponent; export declare const noop: (...args: any[]) => any; export declare const idx: (obj: any, accessor: any) => any; export declare const isClient: boolean; export declare const on: (obj: any, ...args: any[]) => any; export declare const off: (obj: any, ...args: any[]) => any; export declare const ns: (name: any) => string; export declare const sym: (name: any) => string | symbol; export declare const isFn: (fn: any) => boolean; export declare const h: typeof React.createElement;