import { EditorOrchestrator, Forms } from "@tripetto/builder";
import { Operation } from "../operation";
export declare const angleUnitsControl: (
    operation: Operation,
    editor: EditorOrchestrator<Operation>,
    onChange?:
        | ((angles: "degrees" | "radians" | "gradians") => void)
        | undefined,
    property?: keyof Operation
) => Forms.Form;
