/**
 * MCP tools for Public Holidays management
 * Provides public holiday tracking with comprehensive listing and aggregation
 */
import { z } from 'zod';
declare const GetPublicHolidaysSchema: z.ZodObject<{
    year: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    year: number;
}, {
    year: number;
}>;
/**
 * Tool: get_public_holidays
 * Retrieves all public holidays for a specific year
 */
export declare const getPublicHolidaysTool: {
    name: string;
    description: string;
    inputSchema: import("zod-to-json-schema").JsonSchema7Type & {
        $schema?: string | undefined;
        definitions?: {
            [key: string]: import("zod-to-json-schema").JsonSchema7Type;
        } | undefined;
    };
    handler: (params: z.infer<typeof GetPublicHolidaysSchema>) => Promise<string>;
};
export {};
