import type { on, once, send } from 'post-robot'; export declare let postRobot: { on: typeof on; once: typeof once; send: typeof send; } | null; /** * We do not import `post-robot` right away as it would cause SSR issues given `post-robot` requires access to `window` right away */ export declare const initPostRobot: () => Promise; export declare const getPostRobot: () => { on: typeof on; once: typeof once; send: typeof send; };