import * as React from 'react'; import { XStyles } from 'mental-styles'; export interface XViewProps extends XStyles { selected?: boolean; linkStrict?: boolean; as?: 'div' | 'a' | 'img'; id?: string; onClick?: React.MouseEventHandler; onMouseDown?: React.MouseEventHandler; onMouseEnter?: React.MouseEventHandler; onMouseLeave?: React.MouseEventHandler; onMouseUp?: React.MouseEventHandler; target?: '_blank'; href?: any; path?: string; replace?: boolean; linkSelectable?: boolean; src?: string; srcSet?: string; onError?: React.ReactEventHandler; ref?: any; children?: any; } export declare const XView: React.MemoExoticComponent<(props: XViewProps) => any>;