declare const _default: {
    id: string;
    name: string;
    description: string;
    fields: {
        type: {
            type: "select";
            label: string;
            isRequired: true;
            options: {
                choices: {
                    value: string;
                    label: string;
                }[];
            };
        };
        nameReadable: {
            type: "text";
            label: string;
            isRequired: true;
            hint: string;
        };
        testDestinationDir: {
            type: "text";
            label: string;
            hint: string;
            defaultValue: string;
        };
        nameCamel: {
            type: "text";
            label: string;
            isRequired: true;
            hint: string;
        };
        namePascal: {
            type: "text";
            label: string;
            hint: string;
        };
    };
};
export default _default;
