import Addon from "../../models/addons/Addon";
/**
 * @elems whoAmI, addonInputName, ruleStr, ruleFunc
 */
export type DropdownOptionsInterface = [
    string,
    string,
    string,
    (val: number) => boolean
] | [
    string,
    string,
    string,
    (val: number) => boolean,
    () => void
];
export declare const getRuleOptions: (addons: Addon[], rule: "start" | "end") => DropdownOptionsInterface[];
