import { PostEventFpFn } from '@tma.js/bridge'; export interface WithPostEvent { /** * A postEvent function to use to call Mini Apps methods. */ postEvent: PostEventFpFn; } export declare const withPostEvent: (obj: O) => O & WithPostEvent;