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