import { User } from '../../user/types'; export declare type WebAuthnDevice = { id: number; user: User; credentialID: string; publicKey: string; counter: number; }; export declare type NewWebAuthnDevice = Omit;