import { Component } from "./RenderingX"; export declare type ViewOptions = { use: (comp: Component) => void; state: Partial; update: (data: Partial) => void; }; export declare type ViewOptionsFunc = (opt: ViewOptions) => void;