import { HttpService } from '@nestjs/axios';
export declare class FbService {
    private http;
    constructor(http: HttpService);
    getUserId(token: string): Promise<string>;
    getData(token: string): Promise<{
        id: any;
        email: any;
    }>;
}
