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