import { CloneTemplate } from "engine"; import { RavenConfigType } from "../types/configurator"; export declare const firstCharToLower: (string: string) => string; export declare const firstCharToUpper: (string: string) => string; export declare const unpluralizables: string[]; export declare const pluralize: (string: string) => string; export declare const getTablesFromConfigs: (config: RavenConfigType) => { camelCaseName: string; upperCaseName: string; pluralLowerCaseName: string; }[]; export declare const getInitialPackCloningCommands: ({ config, }: { config: RavenConfigType; }) => CloneTemplate[];