#!/usr/bin/env node
/**
 * MCP Maple CLI Entry Point
 * NPX executable for running the MapleStory API MCP server
 */
declare class CliApp {
    private logger;
    private server;
    constructor();
    /**
     * Parse and validate CLI arguments
     */
    private parseArguments;
    /**
     * Validate and resolve configuration
     */
    private resolveConfig;
    /**
     * Initialize and start the MCP server
     */
    private startServer;
    /**
     * Setup graceful shutdown handling
     */
    private setupShutdownHandlers;
    /**
     * Main application entry point
     */
    run(): Promise<void>;
}
export { CliApp };
//# sourceMappingURL=index.d.ts.map