/// import { AES_GCM_OPEN_Input, AES_GCM_SEAL_Input, AES_GCM_SealedBoxT } from './_types'; import { Result } from 'neverthrow'; export declare const aesGCMSealDeterministic: (input: Omit & { readonly nonce: Buffer; }) => Result; export declare const AES_GCM: { seal: (input: AES_GCM_SEAL_Input) => Result; open: (input: AES_GCM_OPEN_Input) => Result; tagLength: number; nonceLength: number; algorithm: string; }; //# sourceMappingURL=aesGCM.d.ts.map