export declare const subscription: { [x: string]: { rpc: (data: any) => Promise<{}>; params: (data: any) => Promise<{}>; body: (data: any) => Promise<{}>; } | { params: (data: any) => Promise<{}>; rpc?: undefined; body?: undefined; }; };