export declare const pingSchema: {
    name: string;
    description: string;
    inputSchema: {
        type: string;
        properties: {};
        required: never[];
    };
    annotations: {
        readOnlyHint: boolean;
    };
};
export declare function ping(): Promise<Record<string, never>>;
