import { NameSpaceClient, InternalClient } from "../types"; export declare class Test implements NameSpaceClient<"test"> { private client; constructor(client: InternalClient); echo(args: Record): Promise<{ [x: string]: string; stat: "ok"; api_key?: string | undefined; callback: string; method: string; }>; login(): Promise<{ [x: string]: string; stat: "ok"; api_key?: string | undefined; callback: string; user: { id: string; username: string; }; }>; }