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