export declare function customCamelCase(string: string): string;
/**
 * Pluralizes a string. If the plural is the same as the singular, it adds an "s" or "es" suffix at the end of the string to avoid conflicts.
 */
export declare function pluralize(string: string, { force }: {
    force: boolean;
}): string;
