import { FlatTemplatable } from "tempstream"; import { PickFromListField } from "../fields/pick-from-list.js"; import { FormControlContext } from "./form-control.js"; import { FormFieldControl } from "./form-field-control.js"; /** * This control has own forms in it so if you want to use it you * probably shouldn't use `await super.render(ctx, data, path)` in * render method of you from implementation and you should write * your own implementation of this method. See forms that uses * this control for reference. */ export declare class EditableCollectionSubset extends FormFieldControl { field: PickFromListField; actionname: string; listLabel?: string | undefined; selectLabel?: string | undefined; constructor(field: PickFromListField, actionname: string, listLabel?: string | undefined, selectLabel?: string | undefined); render(fctx: FormControlContext): Promise; role: "input"; }