/** * * `RAW` - RAW * * `BASE64` - BASE64 * * `GZIP_BASE64` - GZIP_BASE64 */ export declare const EncodingEnum: { readonly Raw: "RAW"; readonly Base64: "BASE64"; readonly GzipBase64: "GZIP_BASE64"; }; export type EncodingEnum = (typeof EncodingEnum)[keyof typeof EncodingEnum];