import { EditorOrchestrator, Forms } from "@tripetto/builder";
import { Operation } from "../operation";
export declare const numberControl: (
    operation: Operation,
    editor: EditorOrchestrator<Operation>,
    property?: keyof Operation,
    autoClose?: boolean,
    autoFocus?: boolean,
    mode?: "form" | "inline"
) => [Forms.Form | Forms.Numeric, Forms.Numeric];
