import { GoogleauthService } from './googleauth.service';
export declare class GoogleauthController {
    private readonly googleauthService;
    constructor(googleauthService: GoogleauthService);
    getToken(): Promise<unknown>;
    PostToken(credentials: any): Promise<{
        status: string;
        message: string;
    }>;
}
