import { Tool } from "@modelcontextprotocol/sdk/types.js";
import { UpworkClient } from "../../services/upwork-client.js";
export declare const getProfileToolDefinition: Tool;
export declare function getProfileHandler(args: unknown, upworkClient: UpworkClient): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
export declare const getProfileTool: {
    definition: {
        [x: string]: unknown;
        name: string;
        inputSchema: {
            [x: string]: unknown;
            type: "object";
            properties?: {
                [x: string]: unknown;
            } | undefined;
            required?: string[] | undefined;
        };
        description?: string | undefined;
        title?: string | undefined;
        outputSchema?: {
            [x: string]: unknown;
            type: "object";
            properties?: {
                [x: string]: unknown;
            } | undefined;
            required?: string[] | undefined;
        } | undefined;
        annotations?: {
            [x: string]: unknown;
            title?: string | undefined;
            readOnlyHint?: boolean | undefined;
            destructiveHint?: boolean | undefined;
            idempotentHint?: boolean | undefined;
            openWorldHint?: boolean | undefined;
        } | undefined;
        _meta?: {
            [x: string]: unknown;
        } | undefined;
    };
    handler: typeof getProfileHandler;
    schema: import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>;
};
//# sourceMappingURL=get-profile.d.ts.map