import { AwsCrc32 } from "@aws-crypto/crc32"; import type { Checksum } from "@smithy/types"; declare class NodeCrc32 implements Checksum { private checksum; update(data: Uint8Array): void; digest(): Promise; reset(): void; } export declare const getCrc32ChecksumAlgorithmFunction: () => typeof NodeCrc32 | typeof AwsCrc32; export {};