import { View as IView } from "../response.js"; import { Component } from "../../components/component.js"; export { IView }; export declare class ViewBaseImpl extends Component { props(props: IView['props']): this; find(find: IView['find']): this; /** * The context projection. This field represents the projection of the context, allowing selective retrieval of specific elements. It is a map that specifies the desired elements to be included in the projection. */ context(context: IView['context']): this; }