/**
 * Firefly III MCP Tool Presets
 *
 * This file defines presets for Firefly III MCP tools.
 */
/**
 * All available tool tags in Firefly III API
 */
export declare const ALL_TOOL_TAGS: string[];
/**
 * Default preset tags used in core package
 */
export declare const DEFAULT_PRESET_TAGS: string[];
/**
 * Tool presets for Firefly III MCP
 */
export declare const TOOL_PRESETS: Record<string, string[]>;
/**
 * Get tool tags for a preset
 * @param preset Preset name
 * @returns Array of tool tags
 */
export declare function getPresetTags(preset: string): string[];
/**
 * Check if a preset exists
 * @param preset Preset name
 * @returns True if preset exists
 */
export declare function presetExists(preset: string): boolean;
/**
 * Get all available preset names
 * @returns Array of preset names
 */
export declare function getAvailablePresets(): string[];
//# sourceMappingURL=presets.d.ts.map