import { AnyU8a } from '../types'; import U8aFixed from '../codec/U8aFixed'; /** * @name H512 * @description * Hash containing 512 bits (64 bytes), typically used for signatures */ export default class H512 extends U8aFixed { constructor(value?: AnyU8a); /** * @description Returns the base runtime type name for this instance */ toRawType(): string; }