import { EditorOrchestrator, Forms, Slots } from "@tripetto/builder"; import { Operation } from "../operation"; export declare const variableControl: ( operation: Operation, editor: EditorOrchestrator, property?: keyof Operation, mode?: "form" | "inline", autoFocus?: boolean, filter?: (slot: Slots.Slot) => boolean, onChange?: ((value: string) => void) | undefined ) => [Forms.Form | Forms.Dropdown, number, Forms.Dropdown];