/** * return a random char with characters available in seed. */ export declare const randomChar: (seedString?: string) => string; /** * Returns a random string with the given length * @param length length of the string filled with random chars */ export declare const randomString: (length: any) => string;