import { JsonData, RequestDataType } from "./requests.mjs"; import { ResponseTypes } from "./responses.mjs"; //#region src/web-wallet-channel/dapp-post-message-channel.d.ts type DappPostMessageChannelOptions = { appName: string; hostOrigin: string; hostPathname?: string; extraRequestOptions?: Record; popupWindow?: Window; }; declare class DappPostMessageChannel { #private; constructor({ appName, hostOrigin, hostPathname, extraRequestOptions, popupWindow }: DappPostMessageChannelOptions); send({ type, ...data }: { type: T; } & Extract): Promise; close(): void; } //#endregion export { DappPostMessageChannel }; //# sourceMappingURL=dapp-post-message-channel.d.mts.map