import { Component, TypeDefs } from '../src'; export interface ViewProps { tag?: string; } /** * A component only used in React or Vue to bind event, so that * it can use Intact Event system to stop propagation (stopPropagation). */ export declare class View extends Component { static template(this: View): import("../src").VNode; static typeDefs: Required>; static defaults(): { tag: string; }; }