/** * Convenience function to generate a merkle root from a list of strings. * * @param items - Any list of strings that will be hashed and added to the tree. * @returns - A merkle root (in hexadecimal). */ export declare function generateRoot(items: string[]): string;