import type { Maybe } from "@thi.ng/api";
import { type ComponentOpts } from "../api.js";
export interface RadialMenuOpts extends Omit<ComponentOpts, "layout" | "label" | "info"> {
    x: number;
    y: number;
    r: number;
    items: string[];
    info?: string[];
}
export declare const radialMenu: ({ gui, id, x, y, r, items, info, }: RadialMenuOpts) => Maybe<number>;
//# sourceMappingURL=radial-menu.d.ts.map