export declare function totpCreate({ identifier, }: { identifier: string; }): Promise; export declare function totpVerify({ identifier, code, }: { identifier: string; code: string; }): Promise; export declare function totpAssert({ identifier, code, }: { identifier: string; code: string; }): Promise;