declare const camelToUnderscore: (obj: Record<string, any>) => Record<string, any>;
declare const capitalize: (s: string) => string;
declare const printPackageInfo: (name: string, version: string, color?: string) => void;
export { camelToUnderscore, capitalize, printPackageInfo };
