export type Receiver = (spaceID: string, onPoke: OnPoke) => Cancel; export type OnPoke = () => Promise; export type Cancel = () => void; export declare function getPokeReceiver(): Receiver;