export declare const IP_REGEX: RegExp;
export declare const NUM_REGEX: RegExp;
export declare function firstUp(str: string): string;
export declare function pad(n: number, padding?: number): string;
export declare function generateUniqueName(prefix: string, isUnique: (name: string) => boolean): string;
