/**
 * The request parameters for the `snap_cancelBackgroundEvent` method.
 *
 * @property id - The id of the background event to cancel.
 */
export type CancelBackgroundEventParams = {
    id: string;
};
/**
 * The result returned for the `snap_cancelBackgroundEvent` method.
 *
 * This method does not return anything.
 */
export type CancelBackgroundEventResult = null;
//# sourceMappingURL=cancel-background-event.d.cts.map