import { IBuffer, Bytes } from '../buffer'; export declare function sha256_hex(s: string | Bytes): string; export declare function sha256_b64(s: string | Bytes): string; export declare function sha256_str(s: string | Bytes): string; export declare var sha256: (s: string | Bytes) => IBuffer; export default sha256;