export declare const camelizedIdentifier: (parts: string[]) => any; export declare const listNames: string[]; export declare const lastPartIsAdjective: (parts: string[]) => boolean; export declare const shouldAddExtraNoun: (parts: string[]) => boolean; export declare const ensureValidParts: (parts: string[]) => any[]; export declare const wordsFromId: (identifier: string) => any[]; export declare const humanize: (str: string) => string; export declare const createArrayMatcher: (list: string[]) => (x: string) => boolean; export declare const createSingularArrayMatcher: (list: string[]) => (x: string) => boolean; export declare const createPluralArrayMatcher: (list: string[]) => (x: string) => boolean; export declare const isSingular: (x: string) => boolean; export declare const isPlural: (x: string) => boolean; export declare const unique: (list: any[]) => any[]; export declare function arrToObject(arr: string[]): any;