/** * Represents a custom payload. * * @deprecated Please note that this interface is deprecated. * * @ignore */ interface CustomPayload { /** * The payload content, which can be of any type. */ [key: string]: unknown; } export type { CustomPayload };