import { type EasyData } from '../util/EntityUtil.ts'; import { Entity, type EntityData } from './Entity.ts'; interface WebauthnCredentialData extends EntityData { wancId: string; userId: string; credentialId: string; publicKey: string; browserType?: string; } export declare class WebauthnCredential extends Entity { wancId: string; userId: string; credentialId: string; publicKey: string; browserType?: string; constructor(data: WebauthnCredentialData); static create(data: EasyData): WebauthnCredential; } export {};