import { z } from "zod";
export declare const pushChangesTool: {
    name: string;
    description: string;
    parameters: {
        repositoryPath: z.ZodString;
        remoteName: z.ZodDefault<z.ZodString>;
        branchName: z.ZodString;
        setUpstream: z.ZodDefault<z.ZodBoolean>;
        force: z.ZodDefault<z.ZodBoolean>;
    };
    handler: ({ repositoryPath, remoteName, branchName, setUpstream, force }: {
        repositoryPath: string;
        remoteName: string;
        branchName: string;
        setUpstream: boolean;
        force: boolean;
    }) => Promise<{
        content: {
            type: "text";
            text: string;
        }[];
    }>;
};
