export declare type AliasType = "entity" | "column" | "param"; /** * Naming strategy to be used to name tables and columns in the database. */ export declare class NamingStrategy { enableEscape: boolean; aliasPrefix: { [key in AliasType]?: string; }; getAlias(type: AliasType): string; }