Do not edit this file. It is a report generated by API Extractor.
import { Agent } from 'http';
// Warning: (ae-forgotten-export) The symbol "App" needs to be exported by the entry point index.d.ts
//
// @public
export function getPhoneNumberVerification(app?: App): PhoneNumberVerification;
// @public
export class PhoneNumberVerification {
get app(): App;
verifyToken(jwt: string): Promise<PhoneNumberVerificationToken>;
}
// @public
export interface PhoneNumberVerificationToken {
[key: string]: any;
aud: string[];
exp: number;
iat: number;
iss: string;
jti: string;
nonce: string;
phoneNumber: string;
sub: string;
}