import { Cls, Key } from '../types';
declare class Naming {
    private static readonly LAST_WORD;
    private static readonly PLURALIZE_RULES;
    camelCase(target: Cls): string;
    pluralize(input: string): string;
    table(target: Cls): string;
    prop(target: Cls, propertyKey: Key): string;
}
declare const naming: Naming;
export default naming;
