import type { TokenObject } from '../../shared/schema'; import type { PingMeta } from '../schema'; interface Context { token: TokenObject; } export declare function ping(context: Context): Promise; export {};