export interface LinkupCredentials {
    apiKey: string;
    email?: string;
    password?: string;
    country?: string;
    loginToken?: string;
}
export interface RequestBody {
    [key: string]: any;
}
export declare const LINKUP_API_BASE_URL = "https://api.linkupapi.com/v1";
export declare const NODE_VERSION = "2.4.31";
