declare const _default: {
    id: string;
    name: string;
    description: string;
    fields: {
        shouldBuild: {
            type: "boolean";
            label: string;
            defaultValue: true;
            hint: string;
        };
        upgradeMode: {
            type: "select";
            label: string;
            defaultValue: string;
            options: {
                choices: {
                    value: string;
                    label: string;
                }[];
            };
        };
    };
};
export default _default;
