/**
 * An object containing the parameters for the `snap_cancelBackgroundEvent`
 * method.
 */
export type CancelBackgroundEventParams = {
    /**
     * The ID of the background event to cancel.
     */
    id: string;
};
/**
 * This method does not return any data, so the result is always `null`.
 */
export type CancelBackgroundEventResult = null;
//# sourceMappingURL=cancel-background-event.d.cts.map