import { z } from "zod";
export declare const initProjectRulesSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
/**
 * Initialize project rules tool function
 * Provides guidance for creating specification documents
 */
export declare function initProjectRules(): Promise<{
    content: {
        type: "text";
        text: string;
    }[];
}>;
