/**
 * An object containing the parameters for the `snap_closeWebSocket` method.
 *
 * @property id - The ID of the WebSocket connection to close.
 */
export type CloseWebSocketParams = {
    id: string;
};
/**
 * This method does not return any data, so the result is always `null`.
 */
export type CloseWebSocketResult = null;
//# sourceMappingURL=close-web-socket.d.mts.map