import ByteArray from '../internal/ByteArray.js'; import CallLinkPublicParams from './CallLinkPublicParams.js'; import GenericServerSecretParams from '../GenericServerSecretParams.js'; import UuidCiphertext from '../groups/UuidCiphertext.js'; export default class CallLinkAuthCredentialPresentation extends ByteArray { private readonly __type?; constructor(contents: Uint8Array); verify(serverParams: GenericServerSecretParams, callLinkParams: CallLinkPublicParams, now?: Date): void; getUserId(): UuidCiphertext; }