import { Entity, EntityData } from './Entity';
import { EasyData } from '../util/EntityUtil';
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<WebauthnCredentialData, 'wancId'>): WebauthnCredential;
}
export {};
