import type { BaseChangelog } from '../base-entity-changes/types.ts';
import type { Entity as LiquibaseEntity } from './types.ts';
export declare const addEntityFiles: import("../base-core/api.js").WriteFileSection<{
    [x: string]: never;
} & {
    authenticationTypeUsesRemoteAuthorization: boolean;
    skipUserManagement: boolean;
    generateAuthenticationApi: boolean;
    generateUserManagement: boolean;
    generateBuiltInUserEntity?: boolean;
    generateBuiltInAuthorityEntity: boolean;
    user?: (LiquibaseEntity<({
        propertyName: string;
        propertyNameCapitalized?: string;
        propertyNameUpperSnakeCase?: string;
        propertyApiDescription?: string;
        skipClient?: boolean;
        skipServer?: boolean;
    } & Omit<import("../../lib/jhipster/types/field.js").Field, "fieldType"> & {
        fieldTypeBlob: boolean;
        fieldTypeString: boolean;
        fieldTypeInteger: boolean;
        fieldTypeLong: boolean;
        fieldTypeBigDecimal: boolean;
        fieldTypeFloat: boolean;
        fieldTypeDouble: boolean;
        fieldTypeUUID: boolean;
        fieldTypeBoolean: boolean;
        fieldTypeLocalDate: boolean;
        fieldTypeZonedDateTime: boolean;
        fieldTypeAnyBlob: boolean;
        fieldTypeImageBlob: boolean;
        fieldTypeTextBlob: boolean;
        fieldTypeInstant: boolean;
        fieldTypeDuration: boolean;
        fieldTypeByte: boolean;
        fieldTypeByteBuffer: boolean;
        fieldTypeLocalTime: boolean;
    } & {
        fieldValidationMin: boolean;
        fieldValidationRequired: boolean;
        fieldValidationPattern: boolean;
        fieldValidationMax: boolean;
        fieldValidationUnique: boolean;
        fieldValidationMinlength: boolean;
        fieldValidationMaxlength: boolean;
        fieldValidationMinbytes: boolean;
        fieldValidationMaxbytes: boolean;
    } & {
        path?: string[];
        fieldNameCapitalized: string;
        fieldNameHumanized: string;
        fieldNameUnderscored: string;
        fieldTranslationKey?: string;
        propertyTranslationKey?: string;
        fieldApiDescription?: string;
        enumFileName?: string;
        enumValues?: {
            name: string;
            value: string;
        }[];
        fieldValidate?: boolean;
        unique?: boolean;
        maxlength?: number;
        fakerTemplate?: string;
        uniqueValue?: any[];
        generateFakeDataFromPattern?: () => string | undefined;
        generateFakeData?: (type?: "csv" | "cypress" | "json-serializable" | "ts") => any;
        transient?: boolean;
        id?: boolean;
        autoGenerate?: boolean;
        readonly?: boolean;
        sequenceGeneratorName?: string;
        fieldWithContentType?: boolean;
        contentTypeFieldName?: string;
        fieldTypeTimed?: boolean;
        blobContentTypeText?: boolean;
        blobContentTypeImage?: boolean;
        blobContentTypeAny?: boolean;
        fieldTypeBytes?: boolean;
        fieldTypeBinary?: boolean;
        fieldValidationMinLength: boolean;
        fieldValidationMaxLength: boolean;
        fieldValidationMinBytes: boolean;
        fieldValidationMaxBytes: boolean;
        relatedByOtherEntity?: boolean;
        enumInstance?: string;
        builtIn?: boolean;
        derivedPath?: string[];
    } & {
        fieldType: string;
        fieldIsEnum: true;
    } & {
        defaultValue?: any;
        defaultValueComputed?: any;
    } & import("./types.ts").DatabaseProperty & {
        liquibaseGenerateFakeData?: boolean;
    } & {
        propertyJavaBeanName?: string;
        propertySupplierName?: string;
        propertyConsumerName?: string;
    } & {
        fieldInJavaBeanMethod: string;
    } & {
        propertyDtoJavaType?: string;
    } & {
        javaFieldType?: string;
        fieldJavaBuildSpecification?: string;
        fieldJavadoc?: string;
        fieldJavaValueGenerator?: string;
        javaValueGenerator?: string;
        propertyJavaCustomFilter?: {
            type: string;
            superType: string;
            fieldType: string;
        };
        javaValueSample1?: string;
        javaValueSample2?: string;
        fieldValidateRulesPatternJava?: string;
        javaFieldValidatorsPartial?: string;
    } & {
        columnType?: import("./support/prepare-field.ts").LiquibaseColumnType;
        loadColumnType?: import("./support/prepare-field.ts").LiquibaseLoadColumnType;
        shouldDropDefaultValue?: boolean;
        shouldCreateContentType?: boolean;
        liquibaseAutoIncrement?: boolean;
        liquibaseSequenceGeneratorName?: string;
        liquibaseCustomSequenceGenerator?: boolean;
        liquibaseDefaultValueAttributeValue?: string;
        liquibaseDefaultValueAttributeName?: string;
        uniqueConstraintName?: string;
    }) | ({
        propertyName: string;
        propertyNameCapitalized?: string;
        propertyNameUpperSnakeCase?: string;
        propertyApiDescription?: string;
        skipClient?: boolean;
        skipServer?: boolean;
    } & Omit<import("../../lib/jhipster/types/field.js").Field, "fieldType"> & {
        fieldTypeBlob: boolean;
        fieldTypeString: boolean;
        fieldTypeInteger: boolean;
        fieldTypeLong: boolean;
        fieldTypeBigDecimal: boolean;
        fieldTypeFloat: boolean;
        fieldTypeDouble: boolean;
        fieldTypeUUID: boolean;
        fieldTypeBoolean: boolean;
        fieldTypeLocalDate: boolean;
        fieldTypeZonedDateTime: boolean;
        fieldTypeAnyBlob: boolean;
        fieldTypeImageBlob: boolean;
        fieldTypeTextBlob: boolean;
        fieldTypeInstant: boolean;
        fieldTypeDuration: boolean;
        fieldTypeByte: boolean;
        fieldTypeByteBuffer: boolean;
        fieldTypeLocalTime: boolean;
    } & {
        fieldValidationMin: boolean;
        fieldValidationRequired: boolean;
        fieldValidationPattern: boolean;
        fieldValidationMax: boolean;
        fieldValidationUnique: boolean;
        fieldValidationMinlength: boolean;
        fieldValidationMaxlength: boolean;
        fieldValidationMinbytes: boolean;
        fieldValidationMaxbytes: boolean;
    } & {
        path?: string[];
        fieldNameCapitalized: string;
        fieldNameHumanized: string;
        fieldNameUnderscored: string;
        fieldTranslationKey?: string;
        propertyTranslationKey?: string;
        fieldApiDescription?: string;
        enumFileName?: string;
        enumValues?: {
            name: string;
            value: string;
        }[];
        fieldValidate?: boolean;
        unique?: boolean;
        maxlength?: number;
        fakerTemplate?: string;
        uniqueValue?: any[];
        generateFakeDataFromPattern?: () => string | undefined;
        generateFakeData?: (type?: "csv" | "cypress" | "json-serializable" | "ts") => any;
        transient?: boolean;
        id?: boolean;
        autoGenerate?: boolean;
        readonly?: boolean;
        sequenceGeneratorName?: string;
        fieldWithContentType?: boolean;
        contentTypeFieldName?: string;
        fieldTypeTimed?: boolean;
        blobContentTypeText?: boolean;
        blobContentTypeImage?: boolean;
        blobContentTypeAny?: boolean;
        fieldTypeBytes?: boolean;
        fieldTypeBinary?: boolean;
        fieldValidationMinLength: boolean;
        fieldValidationMaxLength: boolean;
        fieldValidationMinBytes: boolean;
        fieldValidationMaxBytes: boolean;
        relatedByOtherEntity?: boolean;
        enumInstance?: string;
        builtIn?: boolean;
        derivedPath?: string[];
    } & {
        fieldType: import("../../lib/jhipster/field-types.ts").FieldType;
        fieldIsEnum: false;
    } & {
        defaultValue?: any;
        defaultValueComputed?: any;
    } & import("./types.ts").DatabaseProperty & {
        liquibaseGenerateFakeData?: boolean;
    } & {
        propertyJavaBeanName?: string;
        propertySupplierName?: string;
        propertyConsumerName?: string;
    } & {
        fieldInJavaBeanMethod: string;
    } & {
        propertyDtoJavaType?: string;
    } & {
        javaFieldType?: string;
        fieldJavaBuildSpecification?: string;
        fieldJavadoc?: string;
        fieldJavaValueGenerator?: string;
        javaValueGenerator?: string;
        propertyJavaCustomFilter?: {
            type: string;
            superType: string;
            fieldType: string;
        };
        javaValueSample1?: string;
        javaValueSample2?: string;
        fieldValidateRulesPatternJava?: string;
        javaFieldValidatorsPartial?: string;
    } & {
        columnType?: import("./support/prepare-field.ts").LiquibaseColumnType;
        loadColumnType?: import("./support/prepare-field.ts").LiquibaseLoadColumnType;
        shouldDropDefaultValue?: boolean;
        shouldCreateContentType?: boolean;
        liquibaseAutoIncrement?: boolean;
        liquibaseSequenceGeneratorName?: string;
        liquibaseCustomSequenceGenerator?: boolean;
        liquibaseDefaultValueAttributeValue?: string;
        liquibaseDefaultValueAttributeName?: string;
        uniqueConstraintName?: string;
    }), import("./types.ts").Relationship> & {
        adminUserDto?: string;
    }) | undefined;
    userManagement?: LiquibaseEntity<({
        propertyName: string;
        propertyNameCapitalized?: string;
        propertyNameUpperSnakeCase?: string;
        propertyApiDescription?: string;
        skipClient?: boolean;
        skipServer?: boolean;
    } & Omit<import("../../lib/jhipster/types/field.js").Field, "fieldType"> & {
        fieldTypeBlob: boolean;
        fieldTypeString: boolean;
        fieldTypeInteger: boolean;
        fieldTypeLong: boolean;
        fieldTypeBigDecimal: boolean;
        fieldTypeFloat: boolean;
        fieldTypeDouble: boolean;
        fieldTypeUUID: boolean;
        fieldTypeBoolean: boolean;
        fieldTypeLocalDate: boolean;
        fieldTypeZonedDateTime: boolean;
        fieldTypeAnyBlob: boolean;
        fieldTypeImageBlob: boolean;
        fieldTypeTextBlob: boolean;
        fieldTypeInstant: boolean;
        fieldTypeDuration: boolean;
        fieldTypeByte: boolean;
        fieldTypeByteBuffer: boolean;
        fieldTypeLocalTime: boolean;
    } & {
        fieldValidationMin: boolean;
        fieldValidationRequired: boolean;
        fieldValidationPattern: boolean;
        fieldValidationMax: boolean;
        fieldValidationUnique: boolean;
        fieldValidationMinlength: boolean;
        fieldValidationMaxlength: boolean;
        fieldValidationMinbytes: boolean;
        fieldValidationMaxbytes: boolean;
    } & {
        path?: string[];
        fieldNameCapitalized: string;
        fieldNameHumanized: string;
        fieldNameUnderscored: string;
        fieldTranslationKey?: string;
        propertyTranslationKey?: string;
        fieldApiDescription?: string;
        enumFileName?: string;
        enumValues?: {
            name: string;
            value: string;
        }[];
        fieldValidate?: boolean;
        unique?: boolean;
        maxlength?: number;
        fakerTemplate?: string;
        uniqueValue?: any[];
        generateFakeDataFromPattern?: () => string | undefined;
        generateFakeData?: (type?: "csv" | "cypress" | "json-serializable" | "ts") => any;
        transient?: boolean;
        id?: boolean;
        autoGenerate?: boolean;
        readonly?: boolean;
        sequenceGeneratorName?: string;
        fieldWithContentType?: boolean;
        contentTypeFieldName?: string;
        fieldTypeTimed?: boolean;
        blobContentTypeText?: boolean;
        blobContentTypeImage?: boolean;
        blobContentTypeAny?: boolean;
        fieldTypeBytes?: boolean;
        fieldTypeBinary?: boolean;
        fieldValidationMinLength: boolean;
        fieldValidationMaxLength: boolean;
        fieldValidationMinBytes: boolean;
        fieldValidationMaxBytes: boolean;
        relatedByOtherEntity?: boolean;
        enumInstance?: string;
        builtIn?: boolean;
        derivedPath?: string[];
    } & {
        fieldType: string;
        fieldIsEnum: true;
    } & {
        defaultValue?: any;
        defaultValueComputed?: any;
    } & import("./types.ts").DatabaseProperty & {
        liquibaseGenerateFakeData?: boolean;
    } & {
        propertyJavaBeanName?: string;
        propertySupplierName?: string;
        propertyConsumerName?: string;
    } & {
        fieldInJavaBeanMethod: string;
    } & {
        propertyDtoJavaType?: string;
    } & {
        javaFieldType?: string;
        fieldJavaBuildSpecification?: string;
        fieldJavadoc?: string;
        fieldJavaValueGenerator?: string;
        javaValueGenerator?: string;
        propertyJavaCustomFilter?: {
            type: string;
            superType: string;
            fieldType: string;
        };
        javaValueSample1?: string;
        javaValueSample2?: string;
        fieldValidateRulesPatternJava?: string;
        javaFieldValidatorsPartial?: string;
    } & {
        columnType?: import("./support/prepare-field.ts").LiquibaseColumnType;
        loadColumnType?: import("./support/prepare-field.ts").LiquibaseLoadColumnType;
        shouldDropDefaultValue?: boolean;
        shouldCreateContentType?: boolean;
        liquibaseAutoIncrement?: boolean;
        liquibaseSequenceGeneratorName?: string;
        liquibaseCustomSequenceGenerator?: boolean;
        liquibaseDefaultValueAttributeValue?: string;
        liquibaseDefaultValueAttributeName?: string;
        uniqueConstraintName?: string;
    }) | ({
        propertyName: string;
        propertyNameCapitalized?: string;
        propertyNameUpperSnakeCase?: string;
        propertyApiDescription?: string;
        skipClient?: boolean;
        skipServer?: boolean;
    } & Omit<import("../../lib/jhipster/types/field.js").Field, "fieldType"> & {
        fieldTypeBlob: boolean;
        fieldTypeString: boolean;
        fieldTypeInteger: boolean;
        fieldTypeLong: boolean;
        fieldTypeBigDecimal: boolean;
        fieldTypeFloat: boolean;
        fieldTypeDouble: boolean;
        fieldTypeUUID: boolean;
        fieldTypeBoolean: boolean;
        fieldTypeLocalDate: boolean;
        fieldTypeZonedDateTime: boolean;
        fieldTypeAnyBlob: boolean;
        fieldTypeImageBlob: boolean;
        fieldTypeTextBlob: boolean;
        fieldTypeInstant: boolean;
        fieldTypeDuration: boolean;
        fieldTypeByte: boolean;
        fieldTypeByteBuffer: boolean;
        fieldTypeLocalTime: boolean;
    } & {
        fieldValidationMin: boolean;
        fieldValidationRequired: boolean;
        fieldValidationPattern: boolean;
        fieldValidationMax: boolean;
        fieldValidationUnique: boolean;
        fieldValidationMinlength: boolean;
        fieldValidationMaxlength: boolean;
        fieldValidationMinbytes: boolean;
        fieldValidationMaxbytes: boolean;
    } & {
        path?: string[];
        fieldNameCapitalized: string;
        fieldNameHumanized: string;
        fieldNameUnderscored: string;
        fieldTranslationKey?: string;
        propertyTranslationKey?: string;
        fieldApiDescription?: string;
        enumFileName?: string;
        enumValues?: {
            name: string;
            value: string;
        }[];
        fieldValidate?: boolean;
        unique?: boolean;
        maxlength?: number;
        fakerTemplate?: string;
        uniqueValue?: any[];
        generateFakeDataFromPattern?: () => string | undefined;
        generateFakeData?: (type?: "csv" | "cypress" | "json-serializable" | "ts") => any;
        transient?: boolean;
        id?: boolean;
        autoGenerate?: boolean;
        readonly?: boolean;
        sequenceGeneratorName?: string;
        fieldWithContentType?: boolean;
        contentTypeFieldName?: string;
        fieldTypeTimed?: boolean;
        blobContentTypeText?: boolean;
        blobContentTypeImage?: boolean;
        blobContentTypeAny?: boolean;
        fieldTypeBytes?: boolean;
        fieldTypeBinary?: boolean;
        fieldValidationMinLength: boolean;
        fieldValidationMaxLength: boolean;
        fieldValidationMinBytes: boolean;
        fieldValidationMaxBytes: boolean;
        relatedByOtherEntity?: boolean;
        enumInstance?: string;
        builtIn?: boolean;
        derivedPath?: string[];
    } & {
        fieldType: import("../../lib/jhipster/field-types.ts").FieldType;
        fieldIsEnum: false;
    } & {
        defaultValue?: any;
        defaultValueComputed?: any;
    } & import("./types.ts").DatabaseProperty & {
        liquibaseGenerateFakeData?: boolean;
    } & {
        propertyJavaBeanName?: string;
        propertySupplierName?: string;
        propertyConsumerName?: string;
    } & {
        fieldInJavaBeanMethod: string;
    } & {
        propertyDtoJavaType?: string;
    } & {
        javaFieldType?: string;
        fieldJavaBuildSpecification?: string;
        fieldJavadoc?: string;
        fieldJavaValueGenerator?: string;
        javaValueGenerator?: string;
        propertyJavaCustomFilter?: {
            type: string;
            superType: string;
            fieldType: string;
        };
        javaValueSample1?: string;
        javaValueSample2?: string;
        fieldValidateRulesPatternJava?: string;
        javaFieldValidatorsPartial?: string;
    } & {
        columnType?: import("./support/prepare-field.ts").LiquibaseColumnType;
        loadColumnType?: import("./support/prepare-field.ts").LiquibaseLoadColumnType;
        shouldDropDefaultValue?: boolean;
        shouldCreateContentType?: boolean;
        liquibaseAutoIncrement?: boolean;
        liquibaseSequenceGeneratorName?: string;
        liquibaseCustomSequenceGenerator?: boolean;
        liquibaseDefaultValueAttributeValue?: string;
        liquibaseDefaultValueAttributeName?: string;
        uniqueConstraintName?: string;
    }), import("./types.ts").Relationship> | undefined;
    authority?: LiquibaseEntity<({
        propertyName: string;
        propertyNameCapitalized?: string;
        propertyNameUpperSnakeCase?: string;
        propertyApiDescription?: string;
        skipClient?: boolean;
        skipServer?: boolean;
    } & Omit<import("../../lib/jhipster/types/field.js").Field, "fieldType"> & {
        fieldTypeBlob: boolean;
        fieldTypeString: boolean;
        fieldTypeInteger: boolean;
        fieldTypeLong: boolean;
        fieldTypeBigDecimal: boolean;
        fieldTypeFloat: boolean;
        fieldTypeDouble: boolean;
        fieldTypeUUID: boolean;
        fieldTypeBoolean: boolean;
        fieldTypeLocalDate: boolean;
        fieldTypeZonedDateTime: boolean;
        fieldTypeAnyBlob: boolean;
        fieldTypeImageBlob: boolean;
        fieldTypeTextBlob: boolean;
        fieldTypeInstant: boolean;
        fieldTypeDuration: boolean;
        fieldTypeByte: boolean;
        fieldTypeByteBuffer: boolean;
        fieldTypeLocalTime: boolean;
    } & {
        fieldValidationMin: boolean;
        fieldValidationRequired: boolean;
        fieldValidationPattern: boolean;
        fieldValidationMax: boolean;
        fieldValidationUnique: boolean;
        fieldValidationMinlength: boolean;
        fieldValidationMaxlength: boolean;
        fieldValidationMinbytes: boolean;
        fieldValidationMaxbytes: boolean;
    } & {
        path?: string[];
        fieldNameCapitalized: string;
        fieldNameHumanized: string;
        fieldNameUnderscored: string;
        fieldTranslationKey?: string;
        propertyTranslationKey?: string;
        fieldApiDescription?: string;
        enumFileName?: string;
        enumValues?: {
            name: string;
            value: string;
        }[];
        fieldValidate?: boolean;
        unique?: boolean;
        maxlength?: number;
        fakerTemplate?: string;
        uniqueValue?: any[];
        generateFakeDataFromPattern?: () => string | undefined;
        generateFakeData?: (type?: "csv" | "cypress" | "json-serializable" | "ts") => any;
        transient?: boolean;
        id?: boolean;
        autoGenerate?: boolean;
        readonly?: boolean;
        sequenceGeneratorName?: string;
        fieldWithContentType?: boolean;
        contentTypeFieldName?: string;
        fieldTypeTimed?: boolean;
        blobContentTypeText?: boolean;
        blobContentTypeImage?: boolean;
        blobContentTypeAny?: boolean;
        fieldTypeBytes?: boolean;
        fieldTypeBinary?: boolean;
        fieldValidationMinLength: boolean;
        fieldValidationMaxLength: boolean;
        fieldValidationMinBytes: boolean;
        fieldValidationMaxBytes: boolean;
        relatedByOtherEntity?: boolean;
        enumInstance?: string;
        builtIn?: boolean;
        derivedPath?: string[];
    } & {
        fieldType: string;
        fieldIsEnum: true;
    } & {
        defaultValue?: any;
        defaultValueComputed?: any;
    } & import("./types.ts").DatabaseProperty & {
        liquibaseGenerateFakeData?: boolean;
    } & {
        propertyJavaBeanName?: string;
        propertySupplierName?: string;
        propertyConsumerName?: string;
    } & {
        fieldInJavaBeanMethod: string;
    } & {
        propertyDtoJavaType?: string;
    } & {
        javaFieldType?: string;
        fieldJavaBuildSpecification?: string;
        fieldJavadoc?: string;
        fieldJavaValueGenerator?: string;
        javaValueGenerator?: string;
        propertyJavaCustomFilter?: {
            type: string;
            superType: string;
            fieldType: string;
        };
        javaValueSample1?: string;
        javaValueSample2?: string;
        fieldValidateRulesPatternJava?: string;
        javaFieldValidatorsPartial?: string;
    } & {
        columnType?: import("./support/prepare-field.ts").LiquibaseColumnType;
        loadColumnType?: import("./support/prepare-field.ts").LiquibaseLoadColumnType;
        shouldDropDefaultValue?: boolean;
        shouldCreateContentType?: boolean;
        liquibaseAutoIncrement?: boolean;
        liquibaseSequenceGeneratorName?: string;
        liquibaseCustomSequenceGenerator?: boolean;
        liquibaseDefaultValueAttributeValue?: string;
        liquibaseDefaultValueAttributeName?: string;
        uniqueConstraintName?: string;
    }) | ({
        propertyName: string;
        propertyNameCapitalized?: string;
        propertyNameUpperSnakeCase?: string;
        propertyApiDescription?: string;
        skipClient?: boolean;
        skipServer?: boolean;
    } & Omit<import("../../lib/jhipster/types/field.js").Field, "fieldType"> & {
        fieldTypeBlob: boolean;
        fieldTypeString: boolean;
        fieldTypeInteger: boolean;
        fieldTypeLong: boolean;
        fieldTypeBigDecimal: boolean;
        fieldTypeFloat: boolean;
        fieldTypeDouble: boolean;
        fieldTypeUUID: boolean;
        fieldTypeBoolean: boolean;
        fieldTypeLocalDate: boolean;
        fieldTypeZonedDateTime: boolean;
        fieldTypeAnyBlob: boolean;
        fieldTypeImageBlob: boolean;
        fieldTypeTextBlob: boolean;
        fieldTypeInstant: boolean;
        fieldTypeDuration: boolean;
        fieldTypeByte: boolean;
        fieldTypeByteBuffer: boolean;
        fieldTypeLocalTime: boolean;
    } & {
        fieldValidationMin: boolean;
        fieldValidationRequired: boolean;
        fieldValidationPattern: boolean;
        fieldValidationMax: boolean;
        fieldValidationUnique: boolean;
        fieldValidationMinlength: boolean;
        fieldValidationMaxlength: boolean;
        fieldValidationMinbytes: boolean;
        fieldValidationMaxbytes: boolean;
    } & {
        path?: string[];
        fieldNameCapitalized: string;
        fieldNameHumanized: string;
        fieldNameUnderscored: string;
        fieldTranslationKey?: string;
        propertyTranslationKey?: string;
        fieldApiDescription?: string;
        enumFileName?: string;
        enumValues?: {
            name: string;
            value: string;
        }[];
        fieldValidate?: boolean;
        unique?: boolean;
        maxlength?: number;
        fakerTemplate?: string;
        uniqueValue?: any[];
        generateFakeDataFromPattern?: () => string | undefined;
        generateFakeData?: (type?: "csv" | "cypress" | "json-serializable" | "ts") => any;
        transient?: boolean;
        id?: boolean;
        autoGenerate?: boolean;
        readonly?: boolean;
        sequenceGeneratorName?: string;
        fieldWithContentType?: boolean;
        contentTypeFieldName?: string;
        fieldTypeTimed?: boolean;
        blobContentTypeText?: boolean;
        blobContentTypeImage?: boolean;
        blobContentTypeAny?: boolean;
        fieldTypeBytes?: boolean;
        fieldTypeBinary?: boolean;
        fieldValidationMinLength: boolean;
        fieldValidationMaxLength: boolean;
        fieldValidationMinBytes: boolean;
        fieldValidationMaxBytes: boolean;
        relatedByOtherEntity?: boolean;
        enumInstance?: string;
        builtIn?: boolean;
        derivedPath?: string[];
    } & {
        fieldType: import("../../lib/jhipster/field-types.ts").FieldType;
        fieldIsEnum: false;
    } & {
        defaultValue?: any;
        defaultValueComputed?: any;
    } & import("./types.ts").DatabaseProperty & {
        liquibaseGenerateFakeData?: boolean;
    } & {
        propertyJavaBeanName?: string;
        propertySupplierName?: string;
        propertyConsumerName?: string;
    } & {
        fieldInJavaBeanMethod: string;
    } & {
        propertyDtoJavaType?: string;
    } & {
        javaFieldType?: string;
        fieldJavaBuildSpecification?: string;
        fieldJavadoc?: string;
        fieldJavaValueGenerator?: string;
        javaValueGenerator?: string;
        propertyJavaCustomFilter?: {
            type: string;
            superType: string;
            fieldType: string;
        };
        javaValueSample1?: string;
        javaValueSample2?: string;
        fieldValidateRulesPatternJava?: string;
        javaFieldValidatorsPartial?: string;
    } & {
        columnType?: import("./support/prepare-field.ts").LiquibaseColumnType;
        loadColumnType?: import("./support/prepare-field.ts").LiquibaseLoadColumnType;
        shouldDropDefaultValue?: boolean;
        shouldCreateContentType?: boolean;
        liquibaseAutoIncrement?: boolean;
        liquibaseSequenceGeneratorName?: string;
        liquibaseCustomSequenceGenerator?: boolean;
        liquibaseDefaultValueAttributeValue?: string;
        liquibaseDefaultValueAttributeName?: string;
        uniqueConstraintName?: string;
    }), import("./types.ts").Relationship> | undefined;
    anyEntityHasRelationshipWithUser?: boolean;
} & {
    javaNodeBuildPaths: string[];
    clientTestDir?: string;
    clientDistDir?: string;
    entitySuffix: string;
    dtoSuffix: string;
    skipCommitHook?: boolean;
    fakerSeed?: string;
    blueprints?: {
        name: string;
        version: string;
    }[];
    testFrameworks?: string[];
} & import("../base-core/api.js").WriteContext & {
    [x: string]: never;
    baseName?: string | undefined;
} & import("../project-name/application.ts").ProjectNameAddedApplicationProperties & import("../base-simple-application/application.ts").BaseSimpleApplicationPreparingAddedApplicationProperties & import("../javascript-simple-application/application.ts").JavascriptSimpleApplicationLoadingAddedApplicationProperties & import("../javascript-simple-application/application.ts").JavascriptSimpleApplicationPreparingAddedApplicationProperties & {
    [x: string]: never;
    typescriptEslint?: boolean | undefined;
} & {
    [x: string]: never;
    skipCommitHook?: boolean | undefined;
} & {
    [x: string]: never;
    prettierTabWidth?: number | undefined;
    monorepository?: boolean | undefined;
} & {
    [x: string]: never;
    packageJsonNodeEngine?: unknown;
} & Record<"applicationType", "monolith" | "microservice" | "gateway" | undefined> & Record<"applicationTypeMonolith" | "applicationTypeMicroservice" | "applicationTypeGateway", boolean> & Record<string, never> & {
    microfrontend: boolean;
    gatewayServerPort: number;
} & {
    microfrontends: {
        baseName: string;
        lowercaseBaseName?: string;
        capitalizedBaseName?: string;
        endpointPrefix?: string;
    }[];
} & Record<"authenticationType", "session" | "jwt" | "oauth2" | undefined> & Record<"authenticationTypeSession" | "authenticationTypeJwt" | "authenticationTypeOauth2", boolean> & {
    jwtSecretKey: string;
} & {
    syncUserWithIdp?: boolean;
} & {
    rememberMeKey: string;
} & {
    [x: string]: never;
    withGeneratedFlag?: boolean | undefined;
    packageName?: string | undefined;
    packageFolder?: string | undefined;
    projectVersion?: string | undefined;
} & import("../java-simple-application/application.ts").JavaSimpleApplicationLoadingAddedApplicationProperties & import("../java-simple-application/application.ts").JavaSimpleApplicationPreparingAddedApplicationProperties & {
    buildTool: "maven" | "gradle" | undefined;
    buildToolAny: boolean;
    buildToolMaven: boolean;
    buildToolGradle: boolean;
} & import("../java/application.ts").JavaAddedApplicationProperties & {
    [x: string]: never;
    enableGradleDevelocity?: boolean | undefined;
    gradleDevelocityHost?: string | undefined;
} & {
    gradleVersion?: string;
    gradleBuildSrc?: string;
    enableGradleDevelocity?: boolean;
} & {
    generateSpringAuditor: boolean;
} & {
    authenticationTypeUsesRemoteAuthorization: boolean;
    skipUserManagement: boolean;
    generateAuthenticationApi: boolean;
    generateUserManagement: boolean;
    generateBuiltInUserEntity?: boolean;
    generateBuiltInAuthorityEntity: boolean;
    user?: (import("../base-application/entity.ts").Entity<import("../base-application/entity.ts").Field, import("../base-application/entity.ts").Relationship> & {
        adminUserDto?: string;
    }) | undefined;
    userManagement?: import("../base-application/entity.ts").Entity<import("../base-application/entity.ts").Field, import("../base-application/entity.ts").Relationship> | undefined;
    authority?: import("../base-application/entity.ts").Entity<import("../base-application/entity.ts").Field, import("../base-application/entity.ts").Relationship> | undefined;
    anyEntityHasRelationshipWithUser?: boolean;
} & Omit<{
    [x: string]: never;
    languages?: unknown[] | undefined;
    languagesDefinition?: unknown[] | undefined;
    enableTranslation?: boolean | undefined;
    nativeLanguage?: string | undefined;
}, "languages" | "languagesDefinition"> & import("../languages/application.ts").LanguagesLoadingAddedApplicationProperties & import("../languages/application.ts").LanguagesPreparingAddedApplicationProperties & {
    jhiTablePrefix: string;
} & {
    liquibaseDefaultSchemaName: string;
    liquibaseAddH2Properties: boolean;
} & BaseChangelog<LiquibaseEntity<({
    propertyName: string;
    propertyNameCapitalized?: string;
    propertyNameUpperSnakeCase?: string;
    propertyApiDescription?: string;
    skipClient?: boolean;
    skipServer?: boolean;
} & Omit<import("../../lib/jhipster/types/field.js").Field, "fieldType"> & {
    fieldTypeBlob: boolean;
    fieldTypeString: boolean;
    fieldTypeInteger: boolean;
    fieldTypeLong: boolean;
    fieldTypeBigDecimal: boolean;
    fieldTypeFloat: boolean;
    fieldTypeDouble: boolean;
    fieldTypeUUID: boolean;
    fieldTypeBoolean: boolean;
    fieldTypeLocalDate: boolean;
    fieldTypeZonedDateTime: boolean;
    fieldTypeAnyBlob: boolean;
    fieldTypeImageBlob: boolean;
    fieldTypeTextBlob: boolean;
    fieldTypeInstant: boolean;
    fieldTypeDuration: boolean;
    fieldTypeByte: boolean;
    fieldTypeByteBuffer: boolean;
    fieldTypeLocalTime: boolean;
} & {
    fieldValidationMin: boolean;
    fieldValidationRequired: boolean;
    fieldValidationPattern: boolean;
    fieldValidationMax: boolean;
    fieldValidationUnique: boolean;
    fieldValidationMinlength: boolean;
    fieldValidationMaxlength: boolean;
    fieldValidationMinbytes: boolean;
    fieldValidationMaxbytes: boolean;
} & {
    path?: string[];
    fieldNameCapitalized: string;
    fieldNameHumanized: string;
    fieldNameUnderscored: string;
    fieldTranslationKey?: string;
    propertyTranslationKey?: string;
    fieldApiDescription?: string;
    enumFileName?: string;
    enumValues?: {
        name: string;
        value: string;
    }[];
    fieldValidate?: boolean;
    unique?: boolean;
    maxlength?: number;
    fakerTemplate?: string;
    uniqueValue?: any[];
    generateFakeDataFromPattern?: () => string | undefined;
    generateFakeData?: (type?: "csv" | "cypress" | "json-serializable" | "ts") => any;
    transient?: boolean;
    id?: boolean;
    autoGenerate?: boolean;
    readonly?: boolean;
    sequenceGeneratorName?: string;
    fieldWithContentType?: boolean;
    contentTypeFieldName?: string;
    fieldTypeTimed?: boolean;
    blobContentTypeText?: boolean;
    blobContentTypeImage?: boolean;
    blobContentTypeAny?: boolean;
    fieldTypeBytes?: boolean;
    fieldTypeBinary?: boolean;
    fieldValidationMinLength: boolean;
    fieldValidationMaxLength: boolean;
    fieldValidationMinBytes: boolean;
    fieldValidationMaxBytes: boolean;
    relatedByOtherEntity?: boolean;
    enumInstance?: string;
    builtIn?: boolean;
    derivedPath?: string[];
} & {
    fieldType: string;
    fieldIsEnum: true;
} & {
    defaultValue?: any;
    defaultValueComputed?: any;
} & import("./types.ts").DatabaseProperty & {
    liquibaseGenerateFakeData?: boolean;
} & {
    propertyJavaBeanName?: string;
    propertySupplierName?: string;
    propertyConsumerName?: string;
} & {
    fieldInJavaBeanMethod: string;
} & {
    propertyDtoJavaType?: string;
} & {
    javaFieldType?: string;
    fieldJavaBuildSpecification?: string;
    fieldJavadoc?: string;
    fieldJavaValueGenerator?: string;
    javaValueGenerator?: string;
    propertyJavaCustomFilter?: {
        type: string;
        superType: string;
        fieldType: string;
    };
    javaValueSample1?: string;
    javaValueSample2?: string;
    fieldValidateRulesPatternJava?: string;
    javaFieldValidatorsPartial?: string;
} & {
    columnType?: import("./support/prepare-field.ts").LiquibaseColumnType;
    loadColumnType?: import("./support/prepare-field.ts").LiquibaseLoadColumnType;
    shouldDropDefaultValue?: boolean;
    shouldCreateContentType?: boolean;
    liquibaseAutoIncrement?: boolean;
    liquibaseSequenceGeneratorName?: string;
    liquibaseCustomSequenceGenerator?: boolean;
    liquibaseDefaultValueAttributeValue?: string;
    liquibaseDefaultValueAttributeName?: string;
    uniqueConstraintName?: string;
}) | ({
    propertyName: string;
    propertyNameCapitalized?: string;
    propertyNameUpperSnakeCase?: string;
    propertyApiDescription?: string;
    skipClient?: boolean;
    skipServer?: boolean;
} & Omit<import("../../lib/jhipster/types/field.js").Field, "fieldType"> & {
    fieldTypeBlob: boolean;
    fieldTypeString: boolean;
    fieldTypeInteger: boolean;
    fieldTypeLong: boolean;
    fieldTypeBigDecimal: boolean;
    fieldTypeFloat: boolean;
    fieldTypeDouble: boolean;
    fieldTypeUUID: boolean;
    fieldTypeBoolean: boolean;
    fieldTypeLocalDate: boolean;
    fieldTypeZonedDateTime: boolean;
    fieldTypeAnyBlob: boolean;
    fieldTypeImageBlob: boolean;
    fieldTypeTextBlob: boolean;
    fieldTypeInstant: boolean;
    fieldTypeDuration: boolean;
    fieldTypeByte: boolean;
    fieldTypeByteBuffer: boolean;
    fieldTypeLocalTime: boolean;
} & {
    fieldValidationMin: boolean;
    fieldValidationRequired: boolean;
    fieldValidationPattern: boolean;
    fieldValidationMax: boolean;
    fieldValidationUnique: boolean;
    fieldValidationMinlength: boolean;
    fieldValidationMaxlength: boolean;
    fieldValidationMinbytes: boolean;
    fieldValidationMaxbytes: boolean;
} & {
    path?: string[];
    fieldNameCapitalized: string;
    fieldNameHumanized: string;
    fieldNameUnderscored: string;
    fieldTranslationKey?: string;
    propertyTranslationKey?: string;
    fieldApiDescription?: string;
    enumFileName?: string;
    enumValues?: {
        name: string;
        value: string;
    }[];
    fieldValidate?: boolean;
    unique?: boolean;
    maxlength?: number;
    fakerTemplate?: string;
    uniqueValue?: any[];
    generateFakeDataFromPattern?: () => string | undefined;
    generateFakeData?: (type?: "csv" | "cypress" | "json-serializable" | "ts") => any;
    transient?: boolean;
    id?: boolean;
    autoGenerate?: boolean;
    readonly?: boolean;
    sequenceGeneratorName?: string;
    fieldWithContentType?: boolean;
    contentTypeFieldName?: string;
    fieldTypeTimed?: boolean;
    blobContentTypeText?: boolean;
    blobContentTypeImage?: boolean;
    blobContentTypeAny?: boolean;
    fieldTypeBytes?: boolean;
    fieldTypeBinary?: boolean;
    fieldValidationMinLength: boolean;
    fieldValidationMaxLength: boolean;
    fieldValidationMinBytes: boolean;
    fieldValidationMaxBytes: boolean;
    relatedByOtherEntity?: boolean;
    enumInstance?: string;
    builtIn?: boolean;
    derivedPath?: string[];
} & {
    fieldType: import("../../lib/jhipster/field-types.ts").FieldType;
    fieldIsEnum: false;
} & {
    defaultValue?: any;
    defaultValueComputed?: any;
} & import("./types.ts").DatabaseProperty & {
    liquibaseGenerateFakeData?: boolean;
} & {
    propertyJavaBeanName?: string;
    propertySupplierName?: string;
    propertyConsumerName?: string;
} & {
    fieldInJavaBeanMethod: string;
} & {
    propertyDtoJavaType?: string;
} & {
    javaFieldType?: string;
    fieldJavaBuildSpecification?: string;
    fieldJavadoc?: string;
    fieldJavaValueGenerator?: string;
    javaValueGenerator?: string;
    propertyJavaCustomFilter?: {
        type: string;
        superType: string;
        fieldType: string;
    };
    javaValueSample1?: string;
    javaValueSample2?: string;
    fieldValidateRulesPatternJava?: string;
    javaFieldValidatorsPartial?: string;
} & {
    columnType?: import("./support/prepare-field.ts").LiquibaseColumnType;
    loadColumnType?: import("./support/prepare-field.ts").LiquibaseLoadColumnType;
    shouldDropDefaultValue?: boolean;
    shouldCreateContentType?: boolean;
    liquibaseAutoIncrement?: boolean;
    liquibaseSequenceGeneratorName?: string;
    liquibaseCustomSequenceGenerator?: boolean;
    liquibaseDefaultValueAttributeValue?: string;
    liquibaseDefaultValueAttributeName?: string;
    uniqueConstraintName?: string;
}), import("./types.ts").Relationship>>>;
export declare const updateEntityFiles: import("../base-core/api.js").WriteFileSection<any>;
export declare const updateConstraintsFiles: import("../base-core/api.js").WriteFileSection<any>;
export declare const updateMigrateFiles: import("../base-core/api.js").WriteFileSection<any>;
export declare const fakeFiles: import("../base-core/api.js").WriteFileSection<any>;
