export default interface IGenerationOptions { resultsPath: string; pluralizeNames: boolean; noConfigs: boolean; convertCaseFile: "pascal" | "param" | "camel" | "none"; convertCaseEntity: "pascal" | "camel" | "none"; convertCaseProperty: "pascal" | "camel" | "snake" | "none"; convertEol: "LF" | "CRLF"; propertyVisibility: "public" | "protected" | "private" | "none"; lazy: boolean; activeRecord: boolean; generateConstructor: boolean; customNamingStrategyPath: string; relationIds: boolean; strictMode: "none" | "?" | "!"; skipSchema: boolean; indexFile: boolean; exportType: "named" | "default"; } export declare const eolConverter: { LF: string; CRLF: string; }; export declare function getDefaultGenerationOptions(): IGenerationOptions;