import { Client, HttpPath } from '@openauth/core';
import { GetUserMeResponse } from './interfaces';
export declare class KakaoClient extends Client {
    request<TData = any>(method: string, path: string | HttpPath, params?: Record<string, any>, headers?: Record<string, any>): Promise<{
        status: number;
        headers: any;
        data: TData;
    }>;
    getUserMe(): Promise<{
        status: number;
        headers: any;
        data: GetUserMeResponse;
    }>;
}
