declare const _default: {
    id: string;
    name: string;
    description: string;
    fields: {
        nameReadable: {
            type: "text";
            label: string;
            hint: string;
            isRequired: true;
        };
        nameReadablePlural: {
            type: "text";
            label: string;
            hint: string;
            isRequired: true;
        };
        nameCamel: {
            type: "text";
            label: string;
            isRequired: true;
            hint: string;
        };
        nameCamelPlural: {
            type: "text";
            label: string;
            hint: string;
        };
        namePascal: {
            type: "text";
            label: string;
            hint: string;
        };
        namePascalPlural: {
            type: "text";
            label: string;
            hint: string;
        };
        nameConst: {
            type: "text";
            label: string;
            hint: string;
        };
        nameKebab: {
            type: "text";
            label: string;
            hint: string;
        };
        nameSnake: {
            type: "text";
            label: string;
            hint: string;
        };
        nameSnakePlural: {
            type: "text";
            label: string;
            hint: string;
        };
        description: {
            type: "text";
            label: string;
            hint: string;
        };
    };
};
export default _default;
